(source, tokens, exprContext)
| 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(); |
no test coverage detected