MCPcopy
hub / github.com/mishoo/UglifyJS-old / block_

Function block_

lib/parse-js.js:998–1007  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

996 };
997
998 function block_() {
999 expect("{");
1000 var a = [];
1001 while (!is("punc", "}")) {
1002 if (is("eof")) unexpected();
1003 a.push(statement());
1004 }
1005 next();
1006 return a;
1007 };
1008
1009 var switch_block_ = curry(in_loop, function(){
1010 expect("{");

Callers 3

parseFunction · 0.85
function_Function · 0.85
try_Function · 0.85

Calls 4

expectFunction · 0.85
isFunction · 0.85
unexpectedFunction · 0.85
nextFunction · 0.85

Tested by

no test coverage detected