MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / parenExpr

Function parenExpr

lib/web/CodeMirror/mode/javascript/javascript.js:422–425  ·  view source on GitHub ↗
(type)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 4

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

Tested by

no test coverage detected