Antlr3.Tool.Grammar.DefineGlobalScope C# (CSharp) Method

DefineGlobalScope() public method

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