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

Function trycatch

deps/v8/test/mjsunit/try.js:78–92  ·  view source on GitHub ↗
(a)

Source from the content-addressed store, hash-verified

76})();
77
78function trycatch(a) {
79 var o;
80 try {
81 throw 1;
82 } catch (o) {
83 a.push(o);
84 try {
85 throw 2;
86 } catch (o) {
87 a.push(o);
88 }
89 a.push(o);
90 }
91 a.push(o);
92}
93var a = [];
94trycatch(a);
95assertEquals(4, a.length);

Callers 1

try.jsFile · 0.85

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…