Boo.Lang.Compiler.Steps.BranchChecking.OnGotoStatement C# (CSharp) 메소드

OnGotoStatement() 공개 메소드

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

            _state.AddLabelReference(node.Label);
        }