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

Function check_FOREIGN_ABCD

deps/v8/test/mjsunit/wasm/ffi.js:143–152  ·  view source on GitHub ↗
(r, a, b)

Source from the content-addressed store, hash-verified

141}
142
143function check_FOREIGN_ABCD(r, a, b) {
144 assertEquals((a * b * 6) | 0, r);
145 assertTrue(was_called);
146// assertEquals(global, params[0]); // sloppy mode.
147 assertEquals(a, params[1]);
148 assertEquals(b, params[2]);
149 assertEquals(undefined, params[3]);
150 assertEquals(undefined, params[4]);
151 was_called = false;
152}
153
154testCallFFI(FOREIGN_ABCD, check_FOREIGN_ABCD);
155

Callers

nothing calls this directly

Calls 2

assertEqualsFunction · 0.50
assertTrueFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…