(reg: Registries, cls: SymbolNode)
| 68 | } |
| 69 | |
| 70 | function registerClass(reg: Registries, cls: SymbolNode): void { |
| 71 | registerNode(reg, cls); |
| 72 | const existing = reg.classRegistry.get(cls.name); |
| 73 | if (existing) existing.push(cls); |
| 74 | else reg.classRegistry.set(cls.name, [cls]); |
| 75 | } |
| 76 | |
| 77 | describe('resolveCalls', () => { |
| 78 | // Strategy 1: self/this resolution |
no test coverage detected