| 1792 | } |
| 1793 | |
| 1794 | void asCByteCode::Block(bool start) |
| 1795 | { |
| 1796 | if( AddInstruction() < 0 ) |
| 1797 | return; |
| 1798 | |
| 1799 | last->op = asBC_Block; |
| 1800 | last->size = 0; |
| 1801 | last->stackInc = 0; |
| 1802 | last->wArg[0] = start ? 1 : 0; |
| 1803 | } |
| 1804 | |
| 1805 | void asCByteCode::TryBlock(short catchLabel) |
| 1806 | { |
no outgoing calls
no test coverage detected