| 535 | CppiaExpr *doIf; |
| 536 | |
| 537 | IfExpr(CppiaStream &stream) |
| 538 | { |
| 539 | condition = createCppiaExpr(stream); |
| 540 | doIf = createCppiaExpr(stream); |
| 541 | } |
| 542 | |
| 543 | const char *getName() HXCPP_OVERRIDE { return "IfExpr"; } |
| 544 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
nothing calls this directly
no test coverage detected