MCPcopy Create free account
hub / github.com/nodejs/node / blah

Function blah

deps/v8/tools/clusterfuzz/js_fuzzer/test_data/try_catch.js:5–20  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

3// found in the LICENSE file.
4
5function blah() {
6 try {
7 var a = 10;
8 console.log(a);
9 } catch (e) {}
10
11 label: for (var i = 0; i < 100; i++) {
12 var b = 0;
13 while (b < 10) {
14 console.log(b);
15 b += 2;
16 continue label;
17 }
18 }
19 return 1;
20}
21
22blah();
23blah();

Callers 1

try_catch.jsFile · 0.70

Calls 1

logMethod · 0.45

Tested by

no test coverage detected