swc/ecmascript/codegen/tests/references/cda499c521ff60c7.js
강동윤 e448a8910c
Fix bugs (#710)
- The parser now supports parsing optional patterns in .d.ts files (Closes #709)
 - The source map is handled properly (Closes #705, Closes #707)
2020-03-09 21:18:41 +09:00

15 lines
150 B
JavaScript

a = class {
static b() {
}
static get c() {
}
static set d(a) {
}
static() {
}
get() {
}
set() {
}
};