12 lines
273 B
Text
12 lines
273 B
Text
// concrete:
|
|
// | File
|
|
// | ExpressionStatement
|
|
// | BinaryExpression
|
|
// | LiteralExpression
|
|
// | String:'"\"Hello \""'
|
|
// | Plus:'"+"'
|
|
// | LiteralExpression
|
|
// | String:'"'world!'"'
|
|
// | Semicolon:'";"'
|
|
//
|
|
"Hello " + 'world!';
|