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

Function bar

deps/v8/test/mjsunit/function-bind.js:213–217  ·  view source on GitHub ↗
(x, y, z)

Source from the content-addressed store, hash-verified

211// Test constructor calls.
212
213function bar(x, y, z) {
214 this.x = x;
215 this.y = y;
216 this.z = z;
217}
218
219f = bar.bind(bar);
220var obj2 = new f(1,2,3);

Calls

no outgoing calls

Tested by

no test coverage detected