mirror of
https://github.com/github/codeql.git
synced 2025-12-27 06:06:32 +01:00
21 lines
217 B
JavaScript
21 lines
217 B
JavaScript
class A {
|
|
constructor() {
|
|
ctor;
|
|
}
|
|
x;
|
|
static y;
|
|
f() {}
|
|
static g() {}
|
|
}
|
|
|
|
class B extends A {
|
|
constructor() {
|
|
before;
|
|
super();
|
|
after;
|
|
}
|
|
z;
|
|
}
|
|
|
|
// semmle-extractor-options: --experimental
|