DEBSOURCES
Skip Quicknav
sources / rust-swc-core / 22.2.1~ds-1 / 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; } }