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

CreateParameterScope() public method

public CreateParameterScope ( string ruleName, Antlr.Runtime.IToken argAction ) : Antlr3.Tool.AttributeScope
ruleName string
argAction Antlr.Runtime.IToken
return Antlr3.Tool.AttributeScope
        public virtual AttributeScope CreateParameterScope( string ruleName, IToken argAction )
        {
            AttributeScope scope = new AttributeScope( this, ruleName, argAction );
            scope.IsParameterScope = true;
            return scope;
        }
Grammar