Boo.Lang.Compiler.Steps.NormalizeStatementModifiers.LeaveLabelStatement C# (CSharp) 메소드

LeaveLabelStatement() 공개 메소드

public LeaveLabelStatement ( Boo.Lang.Compiler.Ast.LabelStatement node ) : void
node Boo.Lang.Compiler.Ast.LabelStatement
리턴 void
        public override void LeaveLabelStatement(LabelStatement node)
        {
            if (null != node.Modifier)
            {
                Warnings.Add(
                    CompilerWarningFactory.ModifiersInLabelsHaveNoEffect(node.Modifier));
            }
        }