| 34 | } |
| 35 | |
| 36 | EMSCRIPTEN_BINDINGS(test_bindings) { |
| 37 | emscripten::class_<Dummy>("Dummy"); |
| 38 | emscripten::function("throw_js_error", &throw_js_error); |
| 39 | emscripten::function("makeDummy", &makeDummy, emscripten::allow_raw_pointers()); |
| 40 | } |
| 41 | |
| 42 | int main() { |
| 43 | printf("start\n"); |
nothing calls this directly
no test coverage detected