swc/crates/swc_estree_compat/tests/fixtures/class-public-fields/input.js

9 lines
144 B
JavaScript
Raw Normal View History

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