Home
last modified time | relevance | path

Searched refs:LEXER_INCREASE (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.h65 LEXER_INCREASE, /**< "++" */ enumerator
228 ((((token_type) - LEXER_INCREASE) * 6) + CBC_PRE_INCR)
Djs-parser-expr.c2250 && (context_p->token.type == LEXER_INCREASE || context_p->token.type == LEXER_DECREASE) in parser_process_unary_expression()
2253 … cbc_opcode_t opcode = (context_p->token.type == LEXER_INCREASE) ? CBC_POST_INCR : CBC_POST_DECR; in parser_process_unary_expression()
2265 uint8_t last_unary_token = LEXER_INCREASE; in parser_process_unary_expression()
2276 && last_unary_token != LEXER_INCREASE in parser_process_unary_expression()
Djs-scanner.c337 case LEXER_INCREASE: in scanner_scan_post_primary_expression()
Djs-lexer.c1705 LEXER_ASSIGN_ADD, LIT_CHAR_PLUS, LEXER_INCREASE) in lexer_next_token()