[js-interop] Add Konan_js_getInt stub for targets without JS interop

This commit is contained in:
Ilya Matveev
2018-03-05 19:10:11 +03:00
committed by ilmat192
parent f097756721
commit 588dd7efb7
+7
View File
@@ -37,6 +37,13 @@ RUNTIME_NORETURN void Konan_js_pushIntToArena(Arena arena, KInt value) {
RuntimeAssert(false, "JavaScript interop is disabled");
}
RUNTIME_NORETURN KInt Konan_js_getInt(Arena arena,
Object obj,
Pointer propertyPtr,
KInt propertyLen) {
RuntimeAssert(false, "JavaScript interop is disabled");
}
RUNTIME_NORETURN KInt Konan_js_getProperty(Arena arena,
Object obj,
Pointer propertyPtr,