puppeteer/utils/doclint/check_public_api/test/js-builder-inheritance/foo.js
Andrey Lushnikov 4e9e3bc614
refactor: consolidate all events in Events.js (#3772)
This will allow us to break all dependency cycles that were forcing
us to put many things in a single file (e.g. ExecutionContext and
ElementHandle).
2019-01-14 19:57:05 -08:00

16 lines
110 B
JavaScript

class A {
constructor() {
}
foo(a) {
}
bar() {
}
}
class B extends A {
bar(override) {
}
}