puppeteer/utils/doclint/test/02-method-errors/foo.js
Andrey Lushnikov 67d109862a [doclint] parse getters as properties
From the api standpoint, there's no difference between property
and a getter.

References #14.
2017-07-13 23:12:38 -07:00

11 lines
65 B
JavaScript

class Foo {
start() {
}
stop() {
}
get zzz() {
}
}