puppeteer/utils/doclint/test/02-method-errors/foo.js
JoelEinbinder 117a128b42 Introduce Page.$ and Page.$$ (#75)
This patch introduces Page.$ and Page.$$ methods which are
aliases for `document.querySelector` and `document.querySelectorAll`. 

Fixes #78.
2017-07-17 18:56:56 -07:00

17 lines
102 B
JavaScript

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