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

GetGlobalScope() 공개 메소드

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