JS: Resolve calls downward in the class hierarchy

This commit is contained in:
Asger F
2025-02-14 11:15:42 +01:00
parent aff458d948
commit b8b2b9a470
2 changed files with 34 additions and 9 deletions

View File

@@ -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();
}