| 686 | |
| 687 | #ifdef HXCPP_GC_GENERATIONAL |
| 688 | inline int pushCtx(hx::StackContext *_hx_ctx, ELEM_ inVal ) |
| 689 | { |
| 690 | int l = length; |
| 691 | EnsureSize((int)l+1); |
| 692 | * (ELEM_ *)(mBase + l*sizeof(ELEM_)) = inVal; |
| 693 | if (hx::ContainsPointers<ELEM_>()) { HX_ARRAY_WB(this,inIdx, hx::PointerOf(inVal) ); } |
| 694 | return length; |
| 695 | } |
| 696 | #endif |
| 697 | |
| 698 |
no test coverage detected