MCPcopy Index your code
hub / github.com/BloombergGraphics/whatiscode / parseNonComputedProperty

Function parseNonComputedProperty

scripts/libs/esprima.js:2708–2718  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2706 }
2707
2708 function parseNonComputedProperty() {
2709 var token, node = new Node();
2710
2711 token = lex();
2712
2713 if (!isIdentifierName(token)) {
2714 throwUnexpectedToken(token);
2715 }
2716
2717 return node.finishIdentifier(token.value);
2718 }
2719
2720 function parseNonComputedMember() {
2721 expect('.');

Callers 1

parseNonComputedMemberFunction · 0.85

Calls 3

lexFunction · 0.85
isIdentifierNameFunction · 0.85
throwUnexpectedTokenFunction · 0.85

Tested by

no test coverage detected