Boo.Lang.Compiler.Steps.BranchChecking.OnGotoStatement C# (CSharp) Method

OnGotoStatement() public method

public OnGotoStatement ( Boo.Lang.Compiler.Ast.GotoStatement node ) : void
node Boo.Lang.Compiler.Ast.GotoStatement
return void
        public override void OnGotoStatement(GotoStatement node)
        {
            AstAnnotations.SetTryBlockDepth(node, _state.TryBlockDepth);

            _state.AddLabelReference(node.Label);
        }