Home
last modified time | relevance | path

Searched refs:parser_stack_push_uint8 (Results 1 – 8 of 8) sorted by relevance

/third_party/jerryscript/jerry-core/parser/js/
Djs-scanner.c127 parser_stack_push_uint8 (context_p, SCAN_STACK_FUNCTION_EXPRESSION); in scanner_scan_primary_expression()
142 parser_stack_push_uint8 (context_p, SCAN_STACK_ARRAY_LITERAL); in scanner_scan_primary_expression()
152 parser_stack_push_uint8 (context_p, SCAN_STACK_OBJECT_LITERAL); in scanner_scan_primary_expression()
161 parser_stack_push_uint8 (context_p, SCAN_STACK_TEMPLATE_STRING); in scanner_scan_primary_expression()
316 parser_stack_push_uint8 (context_p, SCAN_STACK_PAREN_EXPRESSION); in scanner_scan_post_primary_expression()
326 parser_stack_push_uint8 (context_p, SCAN_STACK_TAGGED_TEMPLATE_LITERAL); in scanner_scan_post_primary_expression()
333 parser_stack_push_uint8 (context_p, SCAN_STACK_PROPERTY_ACCESSOR); in scanner_scan_post_primary_expression()
358 parser_stack_push_uint8 (context_p, SCAN_STACK_COLON_EXPRESSION); in scanner_scan_post_primary_expression()
471 parser_stack_push_uint8 (context_p, (status_flags & SCANNER_LITERAL_POOL_IN_WITH) ? 1 : 0); in scanner_scan_primary_expression_end()
472 parser_stack_push_uint8 (context_p, SCAN_STACK_WITH_STATEMENT); in scanner_scan_primary_expression_end()
[all …]
Djs-scanner-ops.c72 parser_stack_push_uint8 (context_p, SCAN_STACK_ARROW_EXPRESSION); in scanner_check_arrow_body()
77 parser_stack_push_uint8 (context_p, SCAN_STACK_FUNCTION_ARROW); in scanner_check_arrow_body()
214 parser_stack_push_uint8 (context_p, SCAN_STACK_BINDING_INIT); in scanner_check_arrow_arg()
231 parser_stack_push_uint8 (context_p, SCAN_STACK_OBJECT_LITERAL); in scanner_check_arrow_arg()
236 parser_stack_push_uint8 (context_p, SCAN_STACK_ARRAY_LITERAL); in scanner_check_arrow_arg()
245 parser_stack_push_uint8 (context_p, SCAN_STACK_PAREN_EXPRESSION); in scanner_check_arrow_arg()
294 parser_stack_push_uint8 (context_p, SCAN_STACK_USE_ASYNC); in scanner_check_async_function()
332 parser_stack_push_uint8 (context_p, SCAN_STACK_PRIVATE_BLOCK); in scanner_check_function_after_if()
482 parser_stack_push_uint8 (context_p, SCAN_STACK_PAREN_EXPRESSION); in scanner_scan_bracket()
497 parser_stack_push_uint8 (context_p, SCAN_STACK_ARROW_ARGUMENTS); in scanner_scan_bracket()
Djs-parser-statm.c416 parser_stack_push_uint8 (context_p, statement_type); in parser_push_block_context()
847 parser_stack_push_uint8 (context_p, PARSER_STATEMENT_IF); in parser_parse_if_statement_start()
921 parser_stack_push_uint8 (context_p, inside_with); in parser_parse_with_statement_start()
922 parser_stack_push_uint8 (context_p, PARSER_STATEMENT_WITH); in parser_parse_with_statement_start()
1061 parser_stack_push_uint8 (context_p, PARSER_STATEMENT_WHILE); in parser_parse_while_statement_start()
1430 parser_stack_push_uint8 (context_p, is_for_in ? PARSER_STATEMENT_FOR_IN in parser_parse_for_statement_start()
1433 parser_stack_push_uint8 (context_p, PARSER_STATEMENT_FOR_IN); in parser_parse_for_statement_start()
1553 parser_stack_push_uint8 (context_p, PARSER_STATEMENT_FOR); in parser_parse_for_statement_start()
1717 parser_stack_push_uint8 (context_p, PARSER_STATEMENT_BLOCK); in parser_parse_switch_statement_start()
1740 parser_stack_push_uint8 (context_p, PARSER_STATEMENT_SWITCH); in parser_parse_switch_statement_start()
[all …]
Djs-parser-expr.c384 parser_stack_push_uint8 (context_p, (uint8_t) item_type); in parser_append_object_literal_item()
909 parser_stack_push_uint8 (context_p, PARSER_OBJECT_PROPERTY_START); in parser_parse_object_literal()
1592 parser_stack_push_uint8 (context_p, context_p->token.type); in parser_parse_unary_expression()
2405 parser_stack_push_uint8 (context_p, LEXER_ASSIGN_CONST); in parser_append_binary_single_assignment_token()
2490 parser_stack_push_uint8 (context_p, assign_opcode); in parser_append_binary_single_assignment_token()
2491 parser_stack_push_uint8 (context_p, LEXER_ASSIGN); in parser_append_binary_single_assignment_token()
2524 parser_stack_push_uint8 (context_p, LEXER_ASSIGN_CONST); in parser_append_binary_token()
2558 parser_stack_push_uint8 (context_p, context_p->token.type); in parser_append_binary_token()
2648 parser_stack_push_uint8 (context_p, CBC_ASSIGN); in parser_process_binary_opcodes()
2649 parser_stack_push_uint8 (context_p, LEXER_ASSIGN); in parser_process_binary_opcodes()
[all …]
Djs-parser-mem.c370 parser_stack_push_uint8 (parser_context_t *context_p, /**< context */ in parser_stack_push_uint8() function
459 parser_stack_push_uint8 (context_p, (uint8_t) (uint16_value >> 8)); in parser_stack_push_uint16()
460 parser_stack_push_uint8 (context_p, (uint8_t) uint16_value); in parser_stack_push_uint16()
Djs-scanner-util.c1459 parser_stack_push_uint8 (context_p, stack_mode); in scanner_push_class_declaration()
1464 parser_stack_push_uint8 (context_p, SCAN_STACK_IMPLICIT_CLASS_CONSTRUCTOR); in scanner_push_class_declaration()
1485 parser_stack_push_uint8 (context_p, scanner_context_p->binding_type); in scanner_push_destructuring_pattern()
Djs-parser-internal.h617 void parser_stack_push_uint8 (parser_context_t *context_p, uint8_t uint8_value);
Djs-parser.c2147 parser_stack_push_uint8 (&context, CBC_MAXIMUM_BYTE_VALUE); in parser_parse_source()