Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/parser/js/
Djs-scanner.c779 if (context_p->token.type != LEXER_RIGHT_BRACE in scanner_scan_primary_expression_end()
828 || ((stack_top == SCAN_STACK_OBJECT_LITERAL) && (type != LEXER_RIGHT_BRACE))) in scanner_scan_primary_expression_end()
913 if (type != LEXER_RIGHT_BRACE) in scanner_scan_primary_expression_end()
995 if (type != LEXER_RIGHT_BRACE) in scanner_scan_primary_expression_end()
1309 && context_p->token.type != LEXER_RIGHT_BRACE) in scanner_scan_statement()
1530 while (context_p->token.type != LEXER_RIGHT_BRACE) in scanner_scan_statement()
1587 if (context_p->token.type != LEXER_RIGHT_BRACE) in scanner_scan_statement()
1744 while (context_p->token.type != LEXER_RIGHT_BRACE) in scanner_scan_statement()
1767 if (context_p->token.type != LEXER_RIGHT_BRACE) in scanner_scan_statement()
1938 if (type != LEXER_RIGHT_BRACE) in scanner_scan_statement_end()
[all …]
Djs-parser-module.c361 if (context_p->token.type == LEXER_RIGHT_BRACE) in parser_module_parse_export_clause()
427 && context_p->token.type != LEXER_RIGHT_BRACE) in parser_module_parse_export_clause()
454 if (context_p->token.type == LEXER_RIGHT_BRACE) in parser_module_parse_import_clause()
534 && (context_p->token.type != LEXER_RIGHT_BRACE)) in parser_module_parse_import_clause()
Djs-lexer.h131 LEXER_RIGHT_BRACE, /**< "}" */ enumerator
222 ((type) == LEXER_RIGHT_BRACE || (type) == LEXER_RIGHT_PAREN || (type) == LEXER_RIGHT_SQUARE)
Djs-parser-expr.c531 if (context_p->token.type == LEXER_RIGHT_BRACE) in parser_parse_class_literal()
922 case LEXER_RIGHT_BRACE: in parser_parse_object_literal()
1103 if ((context_p->token.type == LEXER_RIGHT_BRACE || context_p->token.type == LEXER_COMMA) in parser_parse_object_literal()
1147 if (context_p->token.type == LEXER_RIGHT_BRACE) in parser_parse_object_literal()
1328 if (context_p->token.type != LEXER_RIGHT_BRACE) in parser_parse_template_literal()
1378 if (context_p->token.type != LEXER_RIGHT_BRACE) in parser_parse_template_literal()
1455 if (context_p->token.type != LEXER_RIGHT_BRACE) in parser_parse_tagged_template_literal()
3064 if (context_p->token.type == LEXER_RIGHT_BRACE) in parser_parse_object_initializer()
3085 …ser_pattern_process_assignment (context_p, flags, push_prop_opcode, prop_index, LEXER_RIGHT_BRACE); in parser_parse_object_initializer()
3094 if (context_p->token.type != LEXER_RIGHT_BRACE in parser_parse_object_initializer()
[all …]
Djs-parser-statm.c1710 if (context_p->token.type == LEXER_RIGHT_BRACE) in parser_parse_switch_statement_start()
2755 && context_p->token.type != LEXER_RIGHT_BRACE in parser_parse_statements()
2776 && context_p->token.type != LEXER_RIGHT_BRACE in parser_parse_statements()
2795 case LEXER_RIGHT_BRACE: in parser_parse_statements()
3003 || context_p->token.type == LEXER_RIGHT_BRACE) in parser_parse_statements()
3148 if (context_p->token.type == LEXER_RIGHT_BRACE) in parser_parse_statements()
Djs-lexer.c1540 LEXER_TYPE_A_TOKEN (LIT_CHAR_RIGHT_BRACE, LEXER_RIGHT_BRACE); in lexer_next_token()
1961 case LEXER_RIGHT_BRACE: in lexer_check_yield_no_arg()
3072 context_p->token.type = LEXER_RIGHT_BRACE; in lexer_expect_object_literal_id()
3381 || context_p->token.type == LEXER_RIGHT_BRACE in lexer_string_is_directive()
Djs-parser.c2566 JERRY_ASSERT (context_p->token.type == LEXER_RIGHT_BRACE); in parser_parse_arrow_function()