| 33 | Dynamic(cpp::Int64 inVal); |
| 34 | Dynamic(cpp::UInt64 inVal); |
| 35 | Dynamic(hx::Object *inObj) : super(inObj) { } |
| 36 | Dynamic(const String &inString); |
| 37 | Dynamic(const null &inNull) : super(0) { } |
| 38 | Dynamic(const Dynamic &inRHS) : super(inRHS.mPtr) { } |
no test coverage detected