MCPcopy Create free account
hub / github.com/TextGeneratorio/text-generator.io / parenExpr

Function parenExpr

static/libs/javascript.js:427–430  ·  view source on GitHub ↗
(type)

Source from the content-addressed store, hash-verified

425 return expressionInner(type, value, true);
426 }
427 function parenExpr(type) {
428 if (type != "(") return pass()
429 return cont(pushlex(")"), maybeexpression, expect(")"), poplex)
430 }
431 function expressionInner(type, value, noComma) {
432 if (cx.state.fatArrowAt == cx.stream.start) {
433 var body = noComma ? arrowBodyNoComma : arrowBody;

Callers

nothing calls this directly

Calls 4

contFunction · 0.85
pushlexFunction · 0.85
expectFunction · 0.85
passFunction · 0.70

Tested by

no test coverage detected