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

continue_stmt() protected method

protected continue_stmt ( ) : Statement
return Statement
        protected Statement continue_stmt()
        {
            Statement s;

            IToken  c = null;
            s = null;

            try {      // for error handling
            c = LT(1);
            match(CONTINUE);
            if (0==inputState.guessing)
            {
                s = new ContinueStatement(ToLexicalInfo(c));
            }
            }
            catch (RecognitionException ex)
            {
            if (0 == inputState.guessing)
            {
                reportError(ex, "continue_stmt");
                recover(ex,tokenSet_21_);
            }
            else
            {
                throw ex;
            }
            }
            return s;
        }
BooParserBase