[fine] Automatic rebase support for CST

This commit is contained in:
John Doty 2024-01-04 19:37:58 -08:00
parent 1f6d7ec131
commit 26871aa9ae
6 changed files with 122 additions and 8 deletions

View file

@ -0,0 +1,22 @@
// concrete:
// | File
// | ExpressionStatement
// | BinaryExpression
// | BinaryExpression
// | LiteralExpression
// | True:'"true"'
// | And:'"and"'
// | LiteralExpression
// | False:'"false"'
// | Or:'"or"'
// | BinaryExpression
// | LiteralExpression
// | False:'"false"'
// | And:'"and"'
// | UnaryExpression
// | Bang:'"!"'
// | LiteralExpression
// | True:'"true"'
// | Semicolon:'";"'
//
true and false or false and !true;