Searched refs:CHAR_DIGIT_ (Results 1 – 2 of 2) sorted by relevance
13 CHAR_DIGIT_ = "0123456789" variable in Lexer20 CHAR_NAME_CONTINUATION_ = CHAR_NAME_START_ + CHAR_DIGIT_78 if cur_char in Lexer.CHAR_DIGIT_:79 self.scan_over_(Lexer.CHAR_DIGIT_)81 if cur_char == "-" and next_char in Lexer.CHAR_DIGIT_:83 self.scan_over_(Lexer.CHAR_DIGIT_)
25 CHAR_DIGIT_ = "0123456789" variable in Lexer29 CHAR_NAME_CONTINUATION_ = CHAR_LETTER_ + CHAR_DIGIT_ + "_.+*:^~!/-"99 if cur_char == "\\" and next_char in Lexer.CHAR_DIGIT_:101 self.scan_over_(Lexer.CHAR_DIGIT_)129 if cur_char in Lexer.CHAR_DIGIT_:130 self.scan_over_(Lexer.CHAR_DIGIT_)134 self.scan_over_(Lexer.CHAR_DIGIT_)136 if cur_char == "-" and next_char in Lexer.CHAR_DIGIT_:138 self.scan_over_(Lexer.CHAR_DIGIT_)142 self.scan_over_(Lexer.CHAR_DIGIT_)