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

CreateReturnScope() public method

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