| 132 | |
| 133 | |
| 134 | void CppiaModule::mark(hx::MarkContext *__inCtx) |
| 135 | { |
| 136 | DBGLOG(" --- MARK --- \n"); |
| 137 | HX_MARK_MEMBER(strings); |
| 138 | for(int i=0;i<types.size();i++) |
| 139 | { |
| 140 | if (types[i]) /* May be partially constructed */ |
| 141 | types[i]->mark(__inCtx); |
| 142 | } |
| 143 | for(int i=0;i<markable.size();i++) |
| 144 | { |
| 145 | markable[i]->mark(__inCtx); |
| 146 | } |
| 147 | for(int i=0;i<classes.size();i++) |
| 148 | if (classes[i]) |
| 149 | { |
| 150 | classes[i]->mark(__inCtx); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | #ifdef HXCPP_VISIT_ALLOCS |
| 155 | void CppiaModule::visit(hx::VisitContext *__inCtx) |