MCPcopy Index your code
hub / github.com/nodejs/node / continue_from_finally

Function continue_from_finally

deps/v8/test/mjsunit/try.js:196–210  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

194
195
196function continue_from_finally(x) {
197 var cont = true;
198 while (cont) {
199 try {
200 x++;
201 if (false) return -1;
202 cont = false;
203 continue;
204 } finally {
205 x--;
206 }
207 x--;
208 }
209 return x;
210}
211
212assertEquals(0, continue_from_finally(0));
213assertEquals(1, continue_from_finally(1));

Callers 1

try.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…