| 7111 | CppiaExpr *left; |
| 7112 | CppiaExpr *right; |
| 7113 | BitOpBase(CppiaStream &stream) |
| 7114 | { |
| 7115 | left = createCppiaExpr(stream); |
| 7116 | right = createCppiaExpr(stream); |
| 7117 | } |
| 7118 | const char *getName() HXCPP_OVERRIDE = 0; |
| 7119 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
| 7120 | { |
nothing calls this directly
no test coverage detected