(f)
| 107 | } |
| 108 | |
| 109 | function WrapInRestartProof(f) { |
| 110 | var already_called = false; |
| 111 | return function() { |
| 112 | if (already_called) { |
| 113 | return; |
| 114 | } |
| 115 | already_called = true; |
| 116 | f(); |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | function WrapInConstructor(f) { |
| 121 | return function() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…