22 lines
569 B
Text
22 lines
569 B
Text
// 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;
|