(f)
| 101 | } |
| 102 | |
| 103 | function WrapInDebuggerCall(f) { |
| 104 | return function() { |
| 105 | return ExecuteInDebugContext(f); |
| 106 | }; |
| 107 | } |
| 108 | |
| 109 | function WrapInRestartProof(f) { |
| 110 | var already_called = false; |
no test coverage detected
searching dependent graphs…