MCPcopy Create free account
hub / github.com/node-inspector/node-inspector / grow

Function grow

front-end/UglifyJS/parse-js.js:467–476  ·  view source on GitHub ↗
(op)

Source from the content-addressed store, hash-verified

465
466 function read_operator(prefix) {
467 function grow(op) {
468 if (!peek()) return op;
469 var bigger = op + peek();
470 if (HOP(OPERATORS, bigger)) {
471 next();
472 return grow(bigger);
473 } else {
474 return op;
475 }
476 };
477 return token("operator", grow(prefix || next()));
478 };
479

Callers 1

read_operatorFunction · 0.85

Calls 3

peekFunction · 0.85
HOPFunction · 0.85
nextFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…