mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
JS: Resolve calls downward in the class hierarchy
This commit is contained in:
@@ -5,16 +5,16 @@ class Base {
|
||||
/** calls:methodInBase */
|
||||
this.methodInBase();
|
||||
|
||||
/** calls:NONE */
|
||||
/** calls:methodInSub1 calls:methodInSub2 */
|
||||
this.methodInSub();
|
||||
|
||||
/** calls:overridenInSub0 */
|
||||
/** calls:overridenInSub0 calls:overridenInSub1 calls:overridenInSub2 */
|
||||
this.overridenInSub();
|
||||
}
|
||||
|
||||
/** name:methodInBase */
|
||||
methodInBase() {
|
||||
/** calls:NONE */
|
||||
/** calls:methodInSub1 calls:methodInSub2 */
|
||||
this.methodInSub();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user