mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 19:22:32 +03:00
12 lines
220 B
TypeScript
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] = "";
|