(m: Node)
| 2937 | const MAX_NOTES = 3; |
| 2938 | const rel = (p: string) => p.replace(/\\/g, '/'); |
| 2939 | const containerOf = (m: Node): Node | null => { |
| 2940 | try { const ce = cg.getIncomingEdges(m.id).find((e) => e.kind === 'contains'); return ce ? cg.getNode(ce.source) : null; } |
| 2941 | catch { return null; } |
| 2942 | }; |
| 2943 | const notes: string[] = []; |
| 2944 | const seenSuper = new Set<string>(); |
| 2945 | for (const { token, family } of candidates) { |
nothing calls this directly
no test coverage detected