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

Method addMissingFunktions

deps/v8/tools/parse-processor.mjs:203–210  ·  view source on GitHub ↗
(list)

Source from the content-addressed store, hash-verified

201 }
202
203 addMissingFunktions(list) {
204 if (this.finalized) throw 'script is finalized!';
205 list.forEach(fn => {
206 if (this.funktions[fn.start] === undefined) {
207 this.addFunktion(fn);
208 }
209 });
210 }
211
212 addFunktion(fn) {
213 if (this.finalized) throw 'script is finalized!';

Callers

nothing calls this directly

Calls 2

addFunktionMethod · 0.95
forEachMethod · 0.65

Tested by

no test coverage detected