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

mAT_SYMBOL() protected method

protected mAT_SYMBOL ( bool _createToken ) : void
_createToken bool
return void
        protected void mAT_SYMBOL(bool _createToken)
        {
            int _ttype; IToken _token=null; int _begin=text.Length;
            _ttype = AT_SYMBOL;

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