puppeteer/utils/doclint/check_public_api/test/js-builder-inheritance/foo.js
Andrey Lushnikov 6c9a99477b chore(doclint): support classes inheritance (#935)
This patch:
- gives meaningful names to doclint tests
- supports classes inheritance in documentation linter. When class A
  extends class B, all methods of class B are added to documentation of
  class A.

This is a prerequisite for Object Handles: ElementHandle will be
extending ObjectHandle.

References #382
2017-10-02 13:38:44 -07:00

21 lines
195 B
JavaScript

class A {
constructor() {
}
foo(a) {
}
bar() {
}
}
class B extends A {
bar(override) {
}
}
B.Events = {
// Event with the same name as a super class method.
foo: 'foo'
};