def _MatchPS1Token_Fast(line, start_pos): # type: (str, int) -> Tuple[Id_t, int] """Returns (id, end_pos).""" tok_type, end_pos = fastlex.MatchPS1Token(line, start_pos) return IdInstance(tok_type), end_pos
def _MatchPS1Token_Fast(line, start_pos): """Returns (id, end_pos).""" tok_type, end_pos = fastlex.MatchPS1Token(line, start_pos) return IdInstance(tok_type), end_pos