| 2622 | |
| 2623 | |
| 2624 | FieldByName(CppiaExpr *inSrc, CppiaExpr *inObject, hx::Class inStaticClass, |
| 2625 | String inName, AssignOp inAssign, CrementOp inCrement, CppiaExpr *inValue) |
| 2626 | : CppiaDynamicExpr(inSrc) |
| 2627 | { |
| 2628 | object = inObject; |
| 2629 | staticClass = inStaticClass; |
| 2630 | name = inName; |
| 2631 | assign = inAssign; |
| 2632 | crement = inCrement; |
| 2633 | value = inValue; |
| 2634 | } |
| 2635 | |
| 2636 | const char *getName() HXCPP_OVERRIDE { return "FieldByName"; } |
| 2637 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
nothing calls this directly
no outgoing calls
no test coverage detected