Antlr3.Tool.Grammar.DefineGlobalScope C# (CSharp) 메소드

DefineGlobalScope() 공개 메소드

public DefineGlobalScope ( string name, Antlr.Runtime.IToken scopeAction ) : Antlr3.Tool.AttributeScope
name string
scopeAction Antlr.Runtime.IToken
리턴 Antlr3.Tool.AttributeScope
        public virtual AttributeScope DefineGlobalScope( string name, IToken scopeAction )
        {
            AttributeScope scope = new AttributeScope( this, name, scopeAction );
            scopes[name] = scope;
            return scope;
        }
Grammar