| 2080 | CppiaExpr *isPropExpr; |
| 2081 | |
| 2082 | CallGetField(CppiaExpr *inSrc, CppiaExpr *inThis, CppiaExpr *inName, CppiaExpr *inProp) : CppiaDynamicExpr(inSrc) |
| 2083 | { |
| 2084 | thisExpr = inThis; |
| 2085 | nameExpr = inName; |
| 2086 | isPropExpr = inProp; |
| 2087 | } |
| 2088 | |
| 2089 | const char *getName() HXCPP_OVERRIDE { return "__Field"; } |
| 2090 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE |
nothing calls this directly
no outgoing calls
no test coverage detected