mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
10 lines
167 B
JavaScript
10 lines
167 B
JavaScript
const _sym = Symbol("_sym");
|
|
export class MyClass {
|
|
method() {
|
|
this[_sym] = "yep", this[_sym];
|
|
}
|
|
constructor(){
|
|
this[_sym] = "ok";
|
|
}
|
|
}
|