Boo.Lang.Parser.BooParserBase.IsValidClosureMacroArgument C# (CSharp) Method

IsValidClosureMacroArgument() protected method

protected IsValidClosureMacroArgument ( int token ) : bool
token int
return bool
        protected bool IsValidClosureMacroArgument(int token)
        {
            if (!IsValidMacroArgument(token)) return false;
            return SUBTRACT != token;
        }
BooParserBase