| 27 | } |
| 28 | |
| 29 | EMSCRIPTEN_BINDINGS(tests) { |
| 30 | emscripten::function("int64_min", &numeric_limits<int64_t>::min); |
| 31 | emscripten::function("int64_max", &numeric_limits<int64_t>::max); |
| 32 | emscripten::function("uint64_max", &numeric_limits<uint64_t>::max); |
| 33 | |
| 34 | register_vector<int64_t>("Int64Vector"); |
| 35 | register_vector<uint64_t>("UInt64Vector"); |
| 36 | } |
| 37 | |
| 38 | extern "C" void ensure_js_throws_with_assertions_enabled(const char* js_code, const char* error_type); |
| 39 |
nothing calls this directly
no test coverage detected