figure out label targets

This commit is contained in:
Mihai Bazon
2012-09-15 16:05:01 +03:00
parent 86c14d0988
commit 4e0262bdfb
2 changed files with 28 additions and 3 deletions

View File

@@ -287,7 +287,7 @@ var AST_Throw = DEFNODE("Throw", null, {
$documentation: "A `throw` statement"
}, AST_Exit);
var AST_LoopControl = DEFNODE("LoopControl", "label", {
var AST_LoopControl = DEFNODE("LoopControl", "label loopcontrol_target", {
$documentation: "Base class for loop control statements (`break` and `continue`)",
_walk: function(visitor) {
return visitor._visit(this, this.label && function(){
@@ -614,7 +614,7 @@ var AST_SymbolCatch = DEFNODE("SymbolCatch", null, {
$documentation: "Symbol naming the exception in catch",
}, AST_SymbolDeclaration);
var AST_Label = DEFNODE("Label", null, {
var AST_Label = DEFNODE("Label", "label_target", {
$documentation: "Symbol naming a label (declaration)",
}, AST_SymbolDeclaration);