seems cleaner if AST_Label doesn't inherit from AST_SymbolDeclaration

This commit is contained in:
Mihai Bazon
2012-10-10 11:37:51 +03:00
parent f26f3b44bc
commit dacce1b1fa
2 changed files with 2 additions and 2 deletions

View File

@@ -785,7 +785,7 @@ var AST_Label = DEFNODE("Label", "references", {
$propdoc: {
references: "[AST_LabelRef*] a list of nodes referring to this label"
}
}, AST_SymbolDeclaration);
}, AST_Symbol);
var AST_SymbolRef = DEFNODE("SymbolRef", null, {
$documentation: "Reference to some symbol (not definition/declaration)",