DEBSOURCES
Skip Quicknav
sources / libnb-platform18-java / 10.0-2 / webcommon / javascript2.editor / test / unit / data / testfiles / formatter / class1.js.indented
12345678
class Shape { constructor (id, x, y) { this.id = id this.move(x, y) } move (x, y) { this.x = x this.y = y } }