MCPcopy Index your code
hub / github.com/reactjs/react-rails / parseJSXIdentifier

Function parseJSXIdentifier

lib/assets/javascripts/JSXTransformer.js:9217–9226  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9215 }
9216
9217 function parseJSXIdentifier() {
9218 var token, marker = markerCreate();
9219
9220 if (lookahead.type !== Token.JSXIdentifier) {
9221 throwUnexpected(lookahead);
9222 }
9223
9224 token = lex();
9225 return markerApply(marker, delegate.createJSXIdentifier(token.value));
9226 }
9227
9228 function parseJSXNamespacedName() {
9229 var namespace, name, marker = markerCreate();

Callers 4

parseJSXNamespacedNameFunction · 0.85
parseJSXMemberExpressionFunction · 0.85
parseJSXElementNameFunction · 0.85
parseJSXAttributeNameFunction · 0.85

Calls 4

markerCreateFunction · 0.85
throwUnexpectedFunction · 0.85
lexFunction · 0.85
markerApplyFunction · 0.85

Tested by

no test coverage detected