| 6359 | |
| 6360 | |
| 6361 | TryExpr(CppiaStream &stream) |
| 6362 | { |
| 6363 | catchCount = stream.getInt(); |
| 6364 | body = createCppiaExpr(stream); |
| 6365 | catches.resize(catchCount); |
| 6366 | for(int i=0;i<catchCount;i++) |
| 6367 | { |
| 6368 | catches[i].var.fromStream(stream); |
| 6369 | catches[i].body = createCppiaExpr(stream); |
| 6370 | } |
| 6371 | } |
| 6372 | |
| 6373 | const char *getName() HXCPP_OVERRIDE { return "TryExpr"; } |
| 6374 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
nothing calls this directly
no test coverage detected