(a, b)
| 2 | |
| 3 | class Example { |
| 4 | constructor(a, b) { |
| 5 | this.a = a; |
| 6 | this.b = b; |
| 7 | this.secret = 0.5; |
| 8 | console.log('Secret'); |
| 9 | console.log(this.secret); |
| 10 | } |
| 11 | |
| 12 | call() { |
| 13 | console.log('External Call'); |
nothing calls this directly
no outgoing calls
no test coverage detected