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

Function func

deps/v8/test/webkit/for-in-var-scope.js:34–38  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

32var j = "start j";
33
34function func() {
35 var object = new Object;
36 object.propName = "propValue";
37 for (var i in object) { j = i; }
38}
39func();
40
41shouldBe("i", "'start i'");

Callers 6

testFunction · 0.70
assert_throwsFunction · 0.50
promise_setupFunction · 0.50
testharness.jsFile · 0.50

Calls

no outgoing calls

Tested by 1

testFunction · 0.56