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

Function _availableIdentifiers

deps/v8/tools/clusterfuzz/js_fuzzer/mutators/common.js:224–230  ·  view source on GitHub ↗
(path, filter)

Source from the content-addressed store, hash-verified

222}
223
224function _availableIdentifiers(path, filter) {
225 const available = new Array();
226 for (const name of _availableIdentifierNamesGen(path, filter)) {
227 available.push(_identifier(name));
228 }
229 return available;
230}
231
232function availableVariables(path) {
233 return _availableIdentifiers(path, isVariableIdentifier);

Callers 2

availableVariablesFunction · 0.85
availableFunctionsFunction · 0.85

Calls 3

_identifierFunction · 0.85
pushMethod · 0.45

Tested by

no test coverage detected