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

GetLocallyDefinedOption() public method

public GetLocallyDefinedOption ( string key ) : object
key string
return 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