mirror of
https://github.com/github/codeql.git
synced 2026-04-27 01:35:13 +02:00
JS: More re-export logic to handle subclass export
This commit is contained in:
@@ -50,6 +50,7 @@ typeModel
|
||||
| (subclass).D.prototype.d | (subclass).D.prototype | Member[d] |
|
||||
| upstream-lib | (reexport).func | ReturnValue |
|
||||
| upstream-lib | reexport | Member[lib] |
|
||||
| upstream-lib.Type | (subclass).D.prototype | |
|
||||
| upstream-lib.XYZ | reexport | Member[x].Member[y].Member[z] |
|
||||
| upstream-lib.XYZ | reexport | Member[xy].Member[z] |
|
||||
summaryModel
|
||||
|
||||
@@ -12,8 +12,6 @@ export class C extends B {
|
||||
|
||||
import * as upstream from "upstream-lib";
|
||||
|
||||
// TODO: needs to emit type model: [upstream.Type; (subclass).D.prototype; ""]
|
||||
// The getAValueReachableFromSource() logic does not handle the base class -> instance step
|
||||
export class D extends upstream.Type {
|
||||
d() {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user