Searched refs:right_ident_p (Results 1 – 2 of 2) sorted by relevance
3331 const lexer_lit_location_t *right_ident_p) /**< identifier */ in lexer_current_is_literal() argument3338 JERRY_ASSERT (left_ident_p->length > 0 && right_ident_p->length > 0); in lexer_current_is_literal()3340 if (left_ident_p->length != right_ident_p->length) in lexer_current_is_literal()3345 if (!left_ident_p->has_escape && !right_ident_p->has_escape) in lexer_current_is_literal()3347 return memcmp (left_ident_p->char_p, right_ident_p->char_p, left_ident_p->length) == 0; in lexer_current_is_literal()3350 return lexer_compare_identifiers (context_p, left_ident_p, right_ident_p); in lexer_current_is_literal()
716 … lexer_current_is_literal (parser_context_t *context_p, const lexer_lit_location_t *right_ident_p);