Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/parser/js/
Djs-scanner-ops.c144 if (scanner_context_p->async_source_p != NULL) in scanner_scan_simple_arrow()
146 JERRY_ASSERT (scanner_context_p->async_source_p == source_p); in scanner_scan_simple_arrow()
265 JERRY_ASSERT (scanner_context_p->async_source_p != NULL); in scanner_check_async_function()
286 scanner_scan_simple_arrow (context_p, scanner_context_p, scanner_context_p->async_source_p); in scanner_check_async_function()
287 scanner_context_p->async_source_p = NULL; in scanner_check_async_function()
309 scanner_context_p->async_source_p = NULL; in scanner_check_async_function()
358 const uint8_t *async_source_p = NULL; in scanner_scan_bracket() local
431 async_source_p = source_p; in scanner_scan_bracket()
473 if (JERRY_UNLIKELY (scanner_context_p->async_source_p != NULL) in scanner_scan_bracket()
476 scanner_context_p->async_source_p = NULL; in scanner_scan_bracket()
[all …]
Djs-scanner.c106 if (scanner_context_p->async_source_p != NULL) in scanner_scan_primary_expression()
183 scanner_context_p->async_source_p = source_p; in scanner_scan_primary_expression()
1376 if (scanner_context_p->async_source_p != NULL) in scanner_scan_statement()
1880 scanner_context_p->async_source_p = context_p->source_p; in scanner_scan_statement()
2297 scanner_context.async_source_p = NULL; in scanner_scan_all()
2727 if (JERRY_UNLIKELY (scanner_context.async_source_p != NULL)) in scanner_scan_all()
2730 literal_pool_p->source_p = scanner_context.async_source_p; in scanner_scan_all()
2731 scanner_context.async_source_p = NULL; in scanner_scan_all()
3189 JERRY_ASSERT (scanner_context.async_source_p != NULL); in scanner_scan_all()
3192 … info_p = scanner_insert_info (context_p, scanner_context.async_source_p, sizeof (scanner_info_t)); in scanner_scan_all()
Djs-scanner-internal.h341 const uint8_t *async_source_p; /**< source position for async functions */ member