DEBSOURCES
Skip Quicknav
sources / rust-swc-core / 35.0.0~ds-2 / crates / swc_estree_compat / tests / fixtures / class-public-fields / input.js
12345678
class Rectangle { height = 0; width; constructor(height, width) { this.height = height; this.width = width; } }