UnityScript.Parser.UnityScriptParser.compound_statement C# (CSharp) Méthode

compound_statement() public méthode

public compound_statement ( Block b ) : void
b Block
Résultat void
        public void compound_statement(Block b)
        {
            try
            {
                this.block(b);
                while ((this.LA(1) == 0x4d) && tokenSet_41_.member(this.LA(2)))
                {
                    this.match(0x4d);
                }
            }
            catch (RecognitionException exception)
            {
                if (base.inputState.guessing != 0)
                {
                    throw;
                }
                this.reportError(exception);
                this.recover(exception, tokenSet_41_);
            }
        }
UnityScriptParser