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

modifiers() protected method

protected modifiers ( ) : void
return void
        protected void modifiers()
        {
            try {      // for error handling
            if (0==inputState.guessing)
            {
                _modifiers = TypeMemberModifiers.None;
            }
            {    // ( ... )*
                for (;;)
                {
                    if ((tokenSet_31_.member(LA(1))))
                    {
                        type_member_modifier();
                    }
                    else
                    {
                        goto _loop200_breakloop;
                    }

                }
            _loop200_breakloop:				;
            }    // ( ... )*
            }
            catch (RecognitionException ex)
            {
            if (0 == inputState.guessing)
            {
                reportError(ex, "modifiers");
                recover(ex,tokenSet_32_);
            }
            else
            {
                throw ex;
            }
            }
        }
BooParserBase