| 227 | |
| 228 | |
| 229 | struct ArrayBuiltinBase : public CppiaExpr |
| 230 | { |
| 231 | CppiaExpr *thisExpr; |
| 232 | Expressions args; |
| 233 | |
| 234 | ArrayBuiltinBase(CppiaExpr *inSrc, CppiaExpr *inThisExpr, Expressions &ioExpressions); |
| 235 | const char *getName() HXCPP_OVERRIDE; |
| 236 | CppiaExpr *link(CppiaModule &inData) HXCPP_OVERRIDE; |
| 237 | }; |
| 238 | |
| 239 | CppiaExpr *createArrayAnyBuiltin(CppiaExpr *src, |
| 240 | CppiaExpr *inThisExpr, String field, |
nothing calls this directly
no outgoing calls
no test coverage detected