| 1 | class ABC { |
| 2 | constructor() { |
| 3 | this.b = 5; |
| 4 | } |
| 5 | doit() { |
| 6 | let _this = this; |
| 7 | return _this.b; |
| 8 | } |
| 9 | apply() { |
| 10 | return 5; |
| 11 | } |
| 12 | ret_def() { |
| 13 | return DEF |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | class DEF { |
| 18 | toABC() { |
nothing calls this directly
no outgoing calls
no test coverage detected