| 60 | } |
| 61 | |
| 62 | template<typename T> inline void __hxcpp_print(T inV) |
| 63 | { |
| 64 | Dynamic d(inV); |
| 65 | __hxcpp_print_string(d); |
| 66 | } |
| 67 | // Specialization that does not need dynamic boxing |
| 68 | template<> inline void __hxcpp_print(String inV) |
| 69 | { |
nothing calls this directly
no test coverage detected