Boo.Lang.Parser.BooParserBase.begin C# (CSharp) Method

begin() protected method

protected begin ( ) : void
return void
        protected void begin()
        {
            try {      // for error handling
            match(COLON);
            match(INDENT);
            }
            catch (RecognitionException ex)
            {
            if (0 == inputState.guessing)
            {
                reportError(ex, "begin");
                recover(ex,tokenSet_62_);
            }
            else
            {
                throw ex;
            }
            }
        }
BooParserBase