diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-05-08 06:23:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-08 06:23:01 +0800 |
commit | da295de82bfa9e1df39f45ee54e8e11ecce5dfb2 (patch) | |
tree | e69d9df85be707b0138bfc3602f5edd7382bb26c /lib/ast.js | |
parent | 4f8ca4626efb15dc986785c89c51cbb3061e5f32 (diff) | |
download | tracifyjs-da295de82bfa9e1df39f45ee54e8e11ecce5dfb2.tar.gz tracifyjs-da295de82bfa9e1df39f45ee54e8e11ecce5dfb2.zip |
support dumping AST (#1879)
Re-order `AST_Binary` properties to make dump more readable.
closes #769
Diffstat (limited to 'lib/ast.js')
-rw-r--r-- | lib/ast.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -619,7 +619,7 @@ var AST_UnaryPostfix = DEFNODE("UnaryPostfix", null, { $documentation: "Unary postfix expression, i.e. `i++`" }, AST_Unary); -var AST_Binary = DEFNODE("Binary", "left operator right", { +var AST_Binary = DEFNODE("Binary", "operator left right", { $documentation: "Binary expression, i.e. `a + b`", $propdoc: { left: "[AST_Node] left-hand side expression", |