MCPcopy Index your code
hub / github.com/dchester/jsonpath / parseGroupExpression

Function parseGroupExpression

jsonpath.js:2155–2165  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2153 // 11.1.6 The Grouping Operator
2154
2155 function parseGroupExpression() {
2156 var expr;
2157
2158 expect('(');
2159
2160 expr = parseExpression();
2161
2162 expect(')');
2163
2164 return expr;
2165 }
2166
2167
2168 // 11.1 Primary Expressions

Callers 1

parsePrimaryExpressionFunction · 0.85

Calls 2

expectFunction · 0.85
parseExpressionFunction · 0.85

Tested by

no test coverage detected