UnityScript.Parser.UnityScriptParser.finally_block C# (CSharp) Method

finally_block() public method

public finally_block ( TryStatement s ) : void
s TryStatement
return void
        public void finally_block(TryStatement s)
        {
            IToken token = null;
            try
            {
                Block block;
                token = this.LT(1);
                this.match(0x11);
                if (base.inputState.guessing == 0)
                {
                    Block block2;
                    s.set_EnsureBlock(block2 = new Block(ToLexicalInfo(token)));
                    block = block2;
                }
                this.compound_or_single_stmt(block);
            }
            catch (RecognitionException exception)
            {
                if (base.inputState.guessing != 0)
                {
                    throw;
                }
                this.reportError(exception);
                this.recover(exception, tokenSet_15_);
            }
        }
UnityScriptParser