| 1 | class myClass { |
| 2 | constructor() { |
| 3 | this.doit() |
| 4 | } |
| 5 | |
| 6 | get doit() { |
| 7 | this.doit2() |
| 8 | } |
| 9 | |
| 10 | doit2() { |
| 11 | console.log('at the end') |
| 12 | } |
| 13 | } |
| 14 | |
| 15 | function inner() { |
| 16 | console.log("inner") |
nothing calls this directly
no outgoing calls
no test coverage detected