Antlr3.Tool.Grammar.GetGlobalScope C# (CSharp) Méthode

GetGlobalScope() public méthode

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