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

CreateRuleScope() public method

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