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

Function read_operator

front-end/UglifyJS/parse-js.js:466–478  ·  view source on GitHub ↗
(prefix)

Source from the content-addressed store, hash-verified

464 };
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
480 function handle_slash() {
481 next();

Callers 2

handle_slashFunction · 0.85
next_tokenFunction · 0.85

Calls 3

tokenFunction · 0.85
growFunction · 0.85
nextFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…