| 396 | } |
| 397 | |
| 398 | CppiaExpr *link(CppiaModule &data) HXCPP_OVERRIDE |
| 399 | { |
| 400 | if (data.layout==0) |
| 401 | { |
| 402 | CppiaExpr *blockFunc = new BlockCallable(this); |
| 403 | return blockFunc->link(data); |
| 404 | } |
| 405 | |
| 406 | LinkExpressions(expressions,data); |
| 407 | return this; |
| 408 | } |
| 409 | |
| 410 | const char *getName() HXCPP_OVERRIDE { return "BlockExpr"; } |
| 411 | ExprType getType() HXCPP_OVERRIDE |
nothing calls this directly
no test coverage detected