| 458 | } |
| 459 | |
| 460 | void CppiaStackVar::visitClosure(char *inBase, hx::VisitContext *__inCtx) |
| 461 | { |
| 462 | switch(storeType) |
| 463 | { |
| 464 | case fsString: |
| 465 | HX_VISIT_MEMBER(*(String *)(inBase + capturePos)); |
| 466 | break; |
| 467 | case fsObject: |
| 468 | HX_VISIT_MEMBER(*(hx::Object **)(inBase + capturePos)); |
| 469 | break; |
| 470 | default: ; |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | void CppiaStackVar::link(CppiaModule &inModule, bool hasDefault) |
| 475 | { |