Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/parser/js/
Djs-scanner-util.c1490 scanner_binding_list_t *binding_list_p; in scanner_push_destructuring_pattern() local
1491binding_list_p = (scanner_binding_list_t *) scanner_malloc (context_p, sizeof (scanner_binding_lis… in scanner_push_destructuring_pattern()
1493 binding_list_p->prev_p = scanner_context_p->active_binding_list_p; in scanner_push_destructuring_pattern()
1494 binding_list_p->items_p = NULL; in scanner_push_destructuring_pattern()
1495 binding_list_p->is_nested = is_nested; in scanner_push_destructuring_pattern()
1497 scanner_context_p->active_binding_list_p = binding_list_p; in scanner_push_destructuring_pattern()
1507 scanner_binding_list_t *binding_list_p = scanner_context_p->active_binding_list_p; in scanner_pop_binding_list() local
1508 scanner_binding_item_t *item_p = binding_list_p->items_p; in scanner_pop_binding_list()
1509 scanner_binding_list_t *prev_binding_list_p = binding_list_p->prev_p; in scanner_pop_binding_list()
1510 bool is_nested = binding_list_p->is_nested; in scanner_pop_binding_list()
[all …]