4e9e3bc614
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).
16 lines
110 B
JavaScript
16 lines
110 B
JavaScript
class A {
|
|
constructor() {
|
|
}
|
|
|
|
foo(a) {
|
|
}
|
|
|
|
bar() {
|
|
}
|
|
}
|
|
|
|
class B extends A {
|
|
bar(override) {
|
|
}
|
|
}
|