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

Function parseNonComputedProperty

jsonpath.js:2249–2260  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2247 }
2248
2249 function parseNonComputedProperty() {
2250 var token, startToken;
2251
2252 startToken = lookahead;
2253 token = lex();
2254
2255 if (!isIdentifierName(token)) {
2256 throwUnexpected(token);
2257 }
2258
2259 return delegate.markEnd(delegate.createIdentifier(token.value), startToken);
2260 }
2261
2262 function parseNonComputedMember() {
2263 expect('.');

Callers 1

parseNonComputedMemberFunction · 0.85

Calls 3

isIdentifierNameFunction · 0.85
throwUnexpectedFunction · 0.85
lexFunction · 0.70

Tested by

no test coverage detected