| 17 | Deque() : Array_obj<Dynamic>(0,0) { } |
| 18 | |
| 19 | static Deque *Create() |
| 20 | { |
| 21 | Deque *result = new Deque(); |
| 22 | result->mFinalizer = new hx::InternalFinalizer(result,clean); |
| 23 | return result; |
| 24 | } |
| 25 | static void clean(hx::Object *inObj) |
| 26 | { |
| 27 | Deque *d = dynamic_cast<Deque *>(inObj); |
nothing calls this directly
no outgoing calls
no test coverage detected