Home
last modified time | relevance | path

Searched refs:SCAN_STACK_ARRAY_LITERAL (Results 1 – 3 of 3) sorted by relevance

/third_party/jerryscript/jerry-core/parser/js/
Djs-scanner.c142 parser_stack_push_uint8 (context_p, SCAN_STACK_ARRAY_LITERAL); in scanner_scan_primary_expression()
218 if (stack_top != SCAN_STACK_ARRAY_LITERAL) in scanner_scan_primary_expression()
230 if (stack_top != SCAN_STACK_PAREN_EXPRESSION && stack_top != SCAN_STACK_ARRAY_LITERAL) in scanner_scan_primary_expression()
240 if (stack_top != SCAN_STACK_ARRAY_LITERAL) in scanner_scan_primary_expression()
434 case SCAN_STACK_ARRAY_LITERAL: in scanner_scan_primary_expression_end()
556 JERRY_ASSERT (context_p->stack_top_uint8 == SCAN_STACK_ARRAY_LITERAL in scanner_scan_primary_expression_end()
587 JERRY_ASSERT (context_p->stack_top_uint8 == SCAN_STACK_ARRAY_LITERAL in scanner_scan_primary_expression_end()
596 … JERRY_ASSERT ((stack_top != SCAN_STACK_ARRAY_LITERAL && stack_top != SCAN_STACK_OBJECT_LITERAL) in scanner_scan_primary_expression_end()
824 case SCAN_STACK_ARRAY_LITERAL: in scanner_scan_primary_expression_end()
827 if (((stack_top == SCAN_STACK_ARRAY_LITERAL) && (type != LEXER_RIGHT_SQUARE)) in scanner_scan_primary_expression_end()
[all …]
Djs-scanner-internal.h96SCAN_STACK_ARRAY_LITERAL, /**< array literal or destructuring assignment or binding… enumerator
Djs-scanner-ops.c236 parser_stack_push_uint8 (context_p, SCAN_STACK_ARRAY_LITERAL); in scanner_check_arrow_arg()