| 5347 | CrementOp crement; |
| 5348 | |
| 5349 | DynamicArrayI(CppiaExpr *inSrc, CppiaExpr *inObj, CppiaExpr *inI) |
| 5350 | : CppiaDynamicExpr(inSrc) |
| 5351 | { |
| 5352 | object = inObj; |
| 5353 | index = inI; |
| 5354 | value = 0; |
| 5355 | assign = aoNone; |
| 5356 | crement = coNone; |
| 5357 | } |
| 5358 | const char *getName() HXCPP_OVERRIDE { return "DynamicArrayI"; } |
| 5359 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
| 5360 | { |
nothing calls this directly
no outgoing calls
no test coverage detected