mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-04 19:31:05 +00:00
TypeScript is no longer enabled
This commit is contained in:
parent
bd068207a1
commit
1bcfcaf1ed
@ -22,14 +22,15 @@ fn has_instance() {
|
|||||||
"#,
|
"#,
|
||||||
)
|
)
|
||||||
.file(
|
.file(
|
||||||
"test.ts",
|
"test.js",
|
||||||
r#"
|
r#"
|
||||||
import * as assert from "assert";
|
import * as assert from "assert";
|
||||||
import * as wasm from "./out";
|
import * as wasm from "./out";
|
||||||
class Array1 {}
|
class Array1 {
|
||||||
Object.defineProperty(Array1, wasm.symbol_has_instance(), {
|
static [wasm.symbol_has_instance()](instance) {
|
||||||
value: (instance: any) => Array.isArray(instance)
|
return Array.isArray(instance);
|
||||||
});
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export function test() {
|
export function test() {
|
||||||
assert.equal(typeof wasm.symbol_has_instance(), "symbol");
|
assert.equal(typeof wasm.symbol_has_instance(), "symbol");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user