()
| 119 | let operations = []; |
| 120 | let lhsObject = { |
| 121 | get property() { |
| 122 | operations.push('lhsEvaluation'); |
| 123 | return new Foo(); |
| 124 | } |
| 125 | }; |
| 126 | let rhs = () => {operations.push('rhsEvaluation'); return 1; }; |
| 127 | class Foo { |
no test coverage detected
searching dependent graphs…