swc/crates/swc_ecma_parser/tests/tsc/symbolProperty46.ts

12 lines
220 B
TypeScript

//@target: ES6
class C {
get [Symbol.hasInstance]() {
return "";
}
// Should take a string
set [Symbol.hasInstance](x) {
}
}
(new C)[Symbol.hasInstance] = 0;
(new C)[Symbol.hasInstance] = "";