MCPcopy Create free account
hub / github.com/DanWahlin/CustomerManagerStandard / parseExpr

Function parseExpr

CustomerManager/Scripts/breeze.debug.js:10459–10466  ·  view source on GitHub ↗
(source, tokens, exprContext)

Source from the content-addressed store, hash-verified

10457 }
10458
10459 function parseExpr(source, tokens, exprContext) {
10460 var parts = source.split(DELIM);
10461 if (parts.length === 1) {
10462 return parseLitOrPropExpr(parts[0], exprContext);
10463 } else {
10464 return parseFnExpr(source, parts, tokens, exprContext);
10465 }
10466 }
10467
10468 function parseLitOrPropExpr(value, exprContext) {
10469 value = value.trim();

Callers 2

createExprFunction · 0.85
parseFnExprFunction · 0.85

Calls 2

parseLitOrPropExprFunction · 0.85
parseFnExprFunction · 0.85

Tested by

no test coverage detected