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

GetLocallyDefinedOption() 공개 메소드

public GetLocallyDefinedOption ( string key ) : object
key string
리턴 object
        public virtual object GetLocallyDefinedOption( string key )
        {
            object value = null;
            if ( options != null )
            {
                options.TryGetValue( key, out value );
            }
            if ( value == null )
            {
                defaultOptions.TryGetValue( key, out value );
            }
            return value;
        }
Grammar