Home
last modified time | relevance | path

Searched refs:LEXER_ASSIGN (Results 1 – 7 of 7) sorted by relevance

/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.h74 ((token_type) >= LEXER_ASSIGN && (token_type) <= LEXER_EXPONENTIATION)
77 ((token_type) >= LEXER_ASSIGN && (token_type) <= LEXER_MODULO)
81 ((token_type) >= LEXER_ASSIGN && (token_type) <= LEXER_ASSIGN_BIT_XOR)
83 #define LEXER_FIRST_BINARY_OP LEXER_ASSIGN
85 LEXER_ASSIGN, /**< "=" (prec: 3) */ enumerator
Djs-parser-expr.c151 && (context_p->token.type == LEXER_ASSIGN in parser_check_invalid_new_target()
2491 parser_stack_push_uint8 (context_p, LEXER_ASSIGN); in parser_append_binary_single_assignment_token()
2506 if (context_p->token.type == LEXER_ASSIGN) in parser_append_binary_token()
2588 if (token == LEXER_ASSIGN) in parser_process_binary_opcodes()
2649 parser_stack_push_uint8 (context_p, LEXER_ASSIGN); in parser_process_binary_opcodes()
2835 if (context_p->token.type == LEXER_ASSIGN) in parser_pattern_form_assignment()
2965 && context_p->token.type != LEXER_ASSIGN in parser_pattern_process_assignment()
3095 && context_p->token.type != LEXER_ASSIGN in parser_parse_object_initializer()
3105 || context_p->token.type == LEXER_ASSIGN in parser_parse_object_initializer()
3273 if (JERRY_UNLIKELY (context_p->token.type == LEXER_ASSIGN in parser_process_group_expression()
Djs-scanner.c863 if (context_p->token.type != LEXER_ASSIGN) in scanner_scan_primary_expression_end()
2626 else if (context_p->token.type == LEXER_ASSIGN) in scanner_scan_all()
2670 case LEXER_ASSIGN: in scanner_scan_all()
2812 if (context_p->token.type == LEXER_ASSIGN) in scanner_scan_all()
2970 || context_p->token.type == LEXER_ASSIGN)) in scanner_scan_all()
2996 if (context_p->token.type == LEXER_ASSIGN) in scanner_scan_all()
3131 if (context_p->token.type != LEXER_ASSIGN) in scanner_scan_all()
Djs-scanner-ops.c202 if (context_p->token.type == LEXER_ASSIGN) in scanner_check_arrow_arg()
Djs-parser-statm.c544 if (context_p->token.type == LEXER_ASSIGN) in parser_parse_var_statement()
1352 if (context_p->token.type == LEXER_ASSIGN) in parser_parse_for_statement_start()
2475 context_p->token.type = LEXER_ASSIGN; in parser_parse_export_statement()
Djs-lexer.c1678 context_p->token.type = LEXER_ASSIGN; in lexer_next_token()
3481 JERRY_ASSERT (token != LEXER_ASSIGN); in lexer_convert_binary_lvalue_token_to_binary()
Djs-parser.c1872 if (context_p->token.type == LEXER_ASSIGN) in parser_parse_function_arguments()