Home
last modified time | relevance | path

Searched refs:LEX_CHAR_DOT (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_frontend/es2panda/lexer/token/
Dletters.h97 #define LEX_CHAR_DOT 0x2E /* . */ macro
125 #define LEX_CHAR_DOT 0x2E /* dot */ macro
/arkcompiler/ets_frontend/es2panda/lexer/
Dlexer.cpp309 … if (Iterator().Peek() == LEX_CHAR_DOT || !allowNumericSeparator || !allowNumericOnNext) { in ScanDecimalNumbers()
370 if (Iterator().Peek() == LEX_CHAR_DOT) { in ScanNumber()
641 case LEX_CHAR_DOT: { in ScanQuestionPunctuator()
936 case LEX_CHAR_DOT: { in ScanDotPunctuator()
939 if (Iterator().Peek() == LEX_CHAR_DOT) { in ScanDotPunctuator()
1381 case LEX_CHAR_DOT: { in NextToken()
/arkcompiler/ets_frontend/es2panda/lexer/regexp/
Dregexp.cpp181 case LEX_CHAR_DOT: { in ParseAlternative()
431 case LEX_CHAR_DOT: in IsSyntaxCharacter()
/arkcompiler/ets_frontend/es2panda/parser/
DexpressionParser.cpp968 if (lexer_->Lookahead() == LEX_CHAR_DOT) { in ParsePotentialNewTarget()
DstatementParser.cpp2961 if (nextChar == LEX_CHAR_LEFT_PAREN || nextChar == LEX_CHAR_DOT) { in ParseImportDeclaration()
DparserImpl.cpp326 if (CurrentLiteralIsBasicType() && lexer_->Lookahead() != LEX_CHAR_DOT) { in ParseTsIdentifierReference()