swc/babel/compat/tests/fixtures/class-unnamed/input.js
강동윤 82ef06afb8
feat(babel/compat): Improve performance of babelify (#1626)
swc_babel_compat:
 - Optimize.

swc:
 - Improve performance of comment storage.
2021-05-06 14:56:54 +09:00

7 lines
124 B
JavaScript

let Rectangle = class {
constructor(height, width) {
this.height = height;
this.width = width;
}
};