| 476 | |
| 477 | const char *getName() HXCPP_OVERRIDE { return "IfElseExpr"; } |
| 478 | IfElseExpr(CppiaStream &stream) |
| 479 | { |
| 480 | condition = createCppiaExpr(stream); |
| 481 | doIf = createCppiaExpr(stream); |
| 482 | doElse = createCppiaExpr(stream); |
| 483 | } |
| 484 | |
| 485 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
| 486 | { |
nothing calls this directly
no test coverage detected