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

mLESS_THAN() public method

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

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