Boo.Lang.Parser.BooLexer.mRE_OPTIONS C# (CSharp) Метод

mRE_OPTIONS() защищенный Метод

protected mRE_OPTIONS ( bool _createToken ) : void
_createToken bool
Результат void
        protected void mRE_OPTIONS(bool _createToken)
        {
            int _ttype; IToken _token=null; int _begin=text.Length;
            _ttype = RE_OPTIONS;

            { // ( ... )+
            int _cnt840=0;
            for (;;)
            {
                if ((tokenSet_1_.member(cached_LA1)))
                {
                    mID_LETTER(false);
                }
                else
                {
                    if (_cnt840 >= 1) { goto _loop840_breakloop; } else { throw new NoViableAltForCharException(cached_LA1, getFilename(), getLine(), getColumn());; }
                }

                _cnt840++;
            }
            _loop840_breakloop:			;
            }    // ( ... )+
            if (_createToken && (null == _token) && (_ttype != Token.SKIP))
            {
            _token = makeToken(_ttype);
            _token.setText(text.ToString(_begin, text.Length-_begin));
            }
            returnToken_ = _token;
        }