MCPcopy Create free account
hub / github.com/Paxa/postbird / parenExpr

Function parenExpr

public/codemirror/javascript/javascript.js:385–388  ·  view source on GitHub ↗
(type)

Source from the content-addressed store, hash-verified

383 return expressionInner(type, true);
384 }
385 function parenExpr(type) {
386 if (type != "(") return pass()
387 return cont(pushlex(")"), expression, expect(")"), poplex)
388 }
389 function expressionInner(type, noComma) {
390 if (cx.state.fatArrowAt == cx.stream.start) {
391 var body = noComma ? arrowBodyNoComma : arrowBody;

Callers

nothing calls this directly

Calls 4

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

Tested by

no test coverage detected