File tree Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Expand file tree Collapse file tree 2 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -25,22 +25,6 @@ njs_scope_temp_index(njs_parser_scope_t *scope)
25
25
}
26
26
27
27
28
- njs_value_t *
29
- njs_scope_create_index_value (njs_vm_t * vm , njs_index_t index )
30
- {
31
- njs_value_t * value ;
32
-
33
- value = njs_mp_alloc (vm -> mem_pool , sizeof (njs_value_t ));
34
- if (njs_slow_path (value == NULL )) {
35
- return NULL ;
36
- }
37
-
38
- njs_scope_value_set (vm , index , value );
39
-
40
- return value ;
41
- }
42
-
43
-
44
28
njs_value_t * *
45
29
njs_scope_make (njs_vm_t * vm , uint32_t count )
46
30
{
Original file line number Diff line number Diff line change 27
27
28
28
29
29
njs_index_t njs_scope_temp_index (njs_parser_scope_t * scope );
30
- njs_value_t * njs_scope_create_index_value (njs_vm_t * vm , njs_index_t index );
31
30
njs_value_t * * njs_scope_make (njs_vm_t * vm , uint32_t count );
32
31
njs_index_t njs_scope_global_index (njs_vm_t * vm , const njs_value_t * src ,
33
32
njs_uint_t runtime );
You can’t perform that action at this time.
0 commit comments