| 1099 | AssignOp op; |
| 1100 | |
| 1101 | SetExpr(CppiaStream &stream,AssignOp inOp) |
| 1102 | { |
| 1103 | op = inOp; |
| 1104 | lvalue = createCppiaExpr(stream); |
| 1105 | value = createCppiaExpr(stream); |
| 1106 | } |
| 1107 | |
| 1108 | const char *getName() HXCPP_OVERRIDE { return "SetExpr"; } |
| 1109 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
nothing calls this directly
no test coverage detected