(calls: any[], src: string, tgtQn: string)
| 60 | return calls; |
| 61 | }; |
| 62 | const hasCall = (calls: any[], src: string, tgtQn: string) => |
| 63 | calls.some((e) => e.src === src && e.tgtQn === tgtQn); |
| 64 | // Any resolved method call `src` makes to a method of the given bare name — |
| 65 | // used by the negative cases to assert nothing was guessed. |
| 66 | const callsMethodNamed = (calls: any[], src: string, tgt: string) => |
no outgoing calls
no test coverage detected