8 lines
82 B
JavaScript
8 lines
82 B
JavaScript
class Foo extends Bar {
|
|
bar = "foo";
|
|
|
|
constructor() {
|
|
foo(super());
|
|
}
|
|
}
|