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

mBITWISE_OR() public method

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

            match('|');
            {
            if ((cached_LA1=='='))
            {
                match('=');
                if (0==inputState.guessing)
                {
                    _ttype = INPLACE_BITWISE_OR;
                }
            }
            else {
            }

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