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

Function parseVariableIdentifier

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

Source from the content-addressed store, hash-verified

7039 }
7040
7041 function parseVariableIdentifier() {
7042 var marker = markerCreate(),
7043 token = lex();
7044
7045 if (token.type !== Token.Identifier) {
7046 throwUnexpected(token);
7047 }
7048
7049 return markerApply(marker, delegate.createIdentifier(token.value));
7050 }
7051
7052 function parseTypeAnnotatableIdentifier(requireTypeAnnotation, canBeOptionalParam) {
7053 var marker = markerCreate(),

Callers 15

parseGenericTypeFunction · 0.85
parseFunctionTypeParamFunction · 0.85
parseExportSpecifierFunction · 0.85
parseImportSpecifierFunction · 0.85
parseContinueStatementFunction · 0.85
parseBreakStatementFunction · 0.85
parseFunctionDeclarationFunction · 0.85
parseFunctionExpressionFunction · 0.85
parseClassImplementsFunction · 0.85
parseClassExpressionFunction · 0.85
parseClassDeclarationFunction · 0.85

Calls 4

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

Tested by

no test coverage detected