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

Function expression

front-end/UglifyJS/parse-js.js:1163–1172  ·  view source on GitHub ↗
(commas)

Source from the content-addressed store, hash-verified

1161 };
1162
1163 function expression(commas) {
1164 if (arguments.length == 0)
1165 commas = true;
1166 var expr = maybe_assign();
1167 if (commas && is("punc", ",")) {
1168 next();
1169 return as("seq", expr, expression());
1170 }
1171 return expr;
1172 };
1173
1174 function in_loop(cont) {
1175 try {

Callers 7

parenthesisedFunction · 0.70
for_Function · 0.70
parseFunction · 0.70
vardefsFunction · 0.70
expr_listFunction · 0.70
object_Function · 0.70
maybe_conditionalFunction · 0.70

Calls 4

maybe_assignFunction · 0.85
isFunction · 0.85
nextFunction · 0.85
asFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…