diff options
author | Mihai Bazon <mihai@bazon.net> | 2012-11-08 15:39:14 +0200 |
---|---|---|
committer | Mihai Bazon <mihai@bazon.net> | 2012-11-08 15:39:14 +0200 |
commit | 1e5e13ed81fe96d4388ae7d9ff1402a871c436b7 (patch) | |
tree | 0fee1c2156af5f9b222477988f35b890c6ae8a56 /lib/ast.js | |
parent | 64270b97780afa714a5c0f86116f88261c310175 (diff) | |
download | tracifyjs-1e5e13ed81fe96d4388ae7d9ff1402a871c436b7.tar.gz tracifyjs-1e5e13ed81fe96d4388ae7d9ff1402a871c436b7.zip |
AST_LabelRef no longer inherits from AST_SymbolRef
Diffstat (limited to 'lib/ast.js')
-rw-r--r-- | lib/ast.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -810,7 +810,7 @@ var AST_SymbolRef = DEFNODE("SymbolRef", null, { var AST_LabelRef = DEFNODE("LabelRef", null, { $documentation: "Reference to a label symbol", -}, AST_SymbolRef); +}, AST_Symbol); var AST_This = DEFNODE("This", null, { $documentation: "The `this` symbol", |