Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/parser/js/
Djs-lexer.h34 LEXER_EOS, /**< end of source */ enumerator
Djs-scanner.c1050 && (type != LEXER_EOS || context_p->stack_top_uint8 != SCAN_STACK_SCRIPT_FUNCTION)) in scanner_scan_primary_expression_end()
1308 && context_p->token.type != LEXER_EOS in scanner_scan_statement()
1926 if (type == LEXER_EOS) in scanner_scan_statement_end()
2537 if (type == LEXER_RIGHT_BRACE || type == LEXER_EOS) in scanner_scan_all()
2559 if (context_p->token.type == LEXER_EOS) in scanner_scan_all()
2747 if (context_p->token.type != LEXER_RIGHT_PAREN && context_p->token.type != LEXER_EOS) in scanner_scan_all()
2835 if (context_p->token.type == LEXER_EOS && stack_top == SCAN_STACK_SCRIPT_FUNCTION) in scanner_scan_all()
Djs-parser-util.c322 context_p->last_cbc.literal_keyword_type = LEXER_EOS; in parser_emit_cbc_literal()
344 context_p->last_cbc.literal_keyword_type = LEXER_EOS; in parser_emit_cbc_literal_value()
Djs-lexer.c773 context_p->token.keyword_type = LEXER_EOS; in lexer_parse_identifier()
1273 context_p->token.keyword_type = LEXER_EOS; in lexer_parse_number()
1520 context_p->token.type = LEXER_EOS; in lexer_next_token()
1967 case LEXER_EOS: in lexer_check_yield_no_arg()
2877 context_p->token.keyword_type = LEXER_EOS; in lexer_construct_regexp_object()
2936 context_p->token.keyword_type = LEXER_EOS; in lexer_expect_identifier()
Djs-parser-statm.c1206 uint8_t token_type = LEXER_EOS; in parser_parse_for_statement_start()
1298 if (token_type == LEXER_EOS) in parser_parse_for_statement_start()
1411 if (context_p->token.type != LEXER_EOS) in parser_parse_for_statement_start()
2738 while (context_p->token.type != LEXER_EOS in parser_parse_statements()
3002 || context_p->token.type == LEXER_EOS in parser_parse_statements()
3215 else if (context_p->token.type != LEXER_EOS in parser_parse_statements()
Djs-parser-expr.c1301 context_p->last_cbc.literal_keyword_type = LEXER_EOS; in parser_parse_function_expression()
1799 context_p->last_cbc.literal_keyword_type = LEXER_EOS; in parser_parse_unary_expression()
Djs-parser.c2155 parser_parse_function_arguments (&context, LEXER_EOS); in parser_parse_source()