Boo.Lang.Parser.BooLexer.mSL_COMMENT C# (CSharp) Method

mSL_COMMENT() public method

public mSL_COMMENT ( bool _createToken ) : void
_createToken bool
return void
        public void mSL_COMMENT(bool _createToken)
        {
            int _ttype; IToken _token=null; int _begin=text.Length;
            _ttype = SL_COMMENT;

            match("#");
            {    // ( ... )*
            for (;;)
            {
                if ((tokenSet_2_.member(cached_LA1)) && (true) && (true))
                {
                    {
                        match(tokenSet_2_);
                    }
                }
                else
                {
                    goto _loop799_breakloop;
                }

            }
            _loop799_breakloop:			;
            }    // ( ... )*
            if (0==inputState.guessing)
            {

                    if (!_preserveComments)
                        _ttype = Token.SKIP;

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