File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,15 @@ struct Parser::TokenInfo {
2727 }
2828
2929 // Known identifiers.
30- static const char *const ID_Extract ;
30+ static const char *const idExtract ;
3131
3232 llvm::StringRef text;
3333 TokenKind kind = TokenKind::Eof;
3434 SourceRange range;
3535 VariantValue value;
3636};
3737
38- const char *const Parser::TokenInfo::ID_Extract = " extract" ;
38+ const char *const Parser::TokenInfo::idExtract = " extract" ;
3939
4040class Parser ::CodeTokenizer {
4141public:
@@ -452,13 +452,13 @@ bool Parser::parseMatcherExpressionImpl(const TokenInfo &nameToken,
452452 }
453453
454454 if (chainCallToken.kind != TokenKind::Ident ||
455- chainCallToken.text != TokenInfo::ID_Extract ) {
455+ chainCallToken.text != TokenInfo::idExtract ) {
456456 error->addError (chainCallToken.range ,
457457 ErrorType::ParserMalformedChainedExpr);
458458 return false ;
459459 }
460460
461- if (chainCallToken.text == TokenInfo::ID_Extract &&
461+ if (chainCallToken.text == TokenInfo::idExtract &&
462462 !parseChainedExpression (functionName))
463463 return false ;
464464 }
You can’t perform that action at this time.
0 commit comments