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

GetGlobalScope() public method

public GetGlobalScope ( string name ) : Antlr3.Tool.AttributeScope
name string
return Antlr3.Tool.AttributeScope
        public virtual AttributeScope GetGlobalScope( string name )
        {
            AttributeScope result;
            scopes.TryGetValue(name, out result);
            return result;
        }
Grammar