| 1803 | } |
| 1804 | |
| 1805 | void asCByteCode::TryBlock(short catchLabel) |
| 1806 | { |
| 1807 | if (AddInstruction() < 0) |
| 1808 | return; |
| 1809 | |
| 1810 | last->op = asBC_TryBlock; |
| 1811 | last->size = 0; |
| 1812 | last->stackInc = 0; |
| 1813 | *ARG_DW(last->arg) = catchLabel; |
| 1814 | } |
| 1815 | |
| 1816 | void asCByteCode::VarDecl(int varDeclIdx) |
| 1817 | { |