Welcome! Log In Create A New Profile

Advanced

[njs] Improved object type initialization structure.

Dmitry Volyntsev
December 06, 2019 07:18AM
details: https://hg.nginx.org/njs/rev/242395b814bb
branches:
changeset: 1280:242395b814bb
user: Dmitry Volyntsev <xeioex@nginx.com>
date: Fri Dec 06 14:59:48 2019 +0300
description:
Improved object type initialization structure.

Allowing predefine magic argument for a type constructor.
This allows to write generic constructor functions.

diffstat:

src/njs_array.c | 6 ++--
src/njs_boolean.c | 10 +++++---
src/njs_builtin.c | 10 +-------
src/njs_crypto.c | 16 +++++++-------
src/njs_date.c | 6 ++--
src/njs_error.c | 54 ++++++++++++++++++++++++++--------------------------
src/njs_function.c | 30 ++++++++++++++--------------
src/njs_function.h | 8 ++----
src/njs_number.c | 10 +++++---
src/njs_object.c | 6 ++--
src/njs_regexp.c | 6 ++--
src/njs_string.c | 10 +++++---
src/njs_symbol.c | 6 ++--
src/njs_value.h | 55 +++++++++++++++++++++++++++++++++--------------------
src/njs_vm.c | 4 ++-
src/njs_vmcode.c | 3 +-
16 files changed, 127 insertions(+), 113 deletions(-)

diffs (554 lines):

diff -r 19b741311270 -r 242395b814bb src/njs_array.c
--- a/src/njs_array.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_array.c Fri Dec 06 14:59:48 2019 +0300
@@ -3103,8 +3103,8 @@ const njs_object_init_t njs_array_insta


const njs_object_type_init_t njs_array_type_init = {
- .constructor = njs_array_constructor,
- .prototype_props = &njs_array_prototype_init,
+ .constructor = njs_native_ctor(njs_array_constructor, 1, 0),
.constructor_props = &njs_array_constructor_init,
- .value = { .object = { .type = NJS_ARRAY } },
+ .prototype_props = &njs_array_prototype_init,
+ .prototype_value = { .object = { .type = NJS_ARRAY } },
};
diff -r 19b741311270 -r 242395b814bb src/njs_boolean.c
--- a/src/njs_boolean.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_boolean.c Fri Dec 06 14:59:48 2019 +0300
@@ -166,9 +166,11 @@ const njs_object_init_t njs_boolean_pro


const njs_object_type_init_t njs_boolean_type_init = {
- .constructor = njs_boolean_constructor,
- .prototype_props = &njs_boolean_prototype_init,
+ .constructor = njs_native_ctor(njs_boolean_constructor, 1, 0),
.constructor_props = &njs_boolean_constructor_init,
- .value = { .object_value = { .value = njs_value(NJS_BOOLEAN, 0, 0.0),
- .object = { .type = NJS_OBJECT_BOOLEAN } } },
+ .prototype_props = &njs_boolean_prototype_init,
+ .prototype_value = { .object_value = {
+ .value = njs_value(NJS_BOOLEAN, 0, 0.0),
+ .object = { .type = NJS_OBJECT_BOOLEAN } }
+ },
};
diff -r 19b741311270 -r 242395b814bb src/njs_builtin.c
--- a/src/njs_builtin.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_builtin.c Fri Dec 06 14:59:48 2019 +0300
@@ -253,7 +253,7 @@ njs_builtin_objects_create(njs_vm_t *vm)
prototype = shared->prototypes;

for (i = NJS_OBJ_TYPE_OBJECT; i < NJS_OBJ_TYPE_MAX; i++) {
- prototype[i] = njs_object_type_init[i]->value;
+ prototype[i] = njs_object_type_init[i]->prototype_value;

ret = njs_object_hash_init(vm, &prototype[i].object.shared_hash,
njs_object_type_init[i]->prototype_props);
@@ -270,14 +270,8 @@ njs_builtin_objects_create(njs_vm_t *vm)
constructor = shared->constructors;

for (i = NJS_OBJ_TYPE_OBJECT; i < NJS_OBJ_TYPE_MAX; i++) {
- constructor[i].object.type = NJS_FUNCTION;
+ constructor[i] = njs_object_type_init[i]->constructor;
constructor[i].object.shared = 0;
- constructor[i].object.extensible = 1;
- constructor[i].native = 1;
- constructor[i].ctor = 1;
- constructor[i].args_offset = 1;
-
- constructor[i].u.native = njs_object_type_init[i]->constructor;

ret = njs_object_hash_init(vm, &constructor[i].object.shared_hash,
njs_object_type_init[i]->constructor_props);
diff -r 19b741311270 -r 242395b814bb src/njs_crypto.c
--- a/src/njs_crypto.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_crypto.c Fri Dec 06 14:59:48 2019 +0300
@@ -386,11 +386,11 @@ const njs_object_init_t njs_hash_constr


const njs_object_type_init_t njs_hash_type_init = {
- .constructor = njs_hash_constructor,
- .prototype_props = &njs_hash_prototype_init,
+ .constructor = njs_native_ctor(njs_hash_constructor, 2, 0),
.constructor_props = &njs_hash_constructor_init,
- .value = { .object_value = { .value = njs_value(NJS_DATA, 0, 0.0),
- .object = { .type = NJS_OBJECT } } },
+ .prototype_props = &njs_hash_prototype_init,
+ .prototype_value = { .object_value = { .value = njs_value(NJS_DATA, 0, 0.0),
+ .object = { .type = NJS_OBJECT } } },
};


@@ -712,11 +712,11 @@ const njs_object_init_t njs_crypto_obje


const njs_object_type_init_t njs_hmac_type_init = {
- .constructor = njs_hmac_constructor,
- .prototype_props = &njs_hmac_prototype_init,
+ .constructor = njs_native_ctor(njs_hmac_constructor, 3, 0),
.constructor_props = &njs_hmac_constructor_init,
- .value = { .object_value = { .value = njs_value(NJS_DATA, 0, 0.0),
- .object = { .type = NJS_OBJECT } } },
+ .prototype_props = &njs_hmac_prototype_init,
+ .prototype_value = { .object_value = { .value = njs_value(NJS_DATA, 0, 0.0),
+ .object = { .type = NJS_OBJECT } } },
};


diff -r 19b741311270 -r 242395b814bb src/njs_date.c
--- a/src/njs_date.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_date.c Fri Dec 06 14:59:48 2019 +0300
@@ -1835,8 +1835,8 @@ const njs_object_init_t njs_date_protot


const njs_object_type_init_t njs_date_type_init = {
- .constructor = njs_date_constructor,
- .prototype_props = &njs_date_prototype_init,
+ .constructor = njs_native_ctor(njs_date_constructor, 7, 0),
.constructor_props = &njs_date_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_props = &njs_date_prototype_init,
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};
diff -r 19b741311270 -r 242395b814bb src/njs_error.c
--- a/src/njs_error.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_error.c Fri Dec 06 14:59:48 2019 +0300
@@ -899,10 +899,10 @@ const njs_object_init_t njs_error_proto


const njs_object_type_init_t njs_error_type_init = {
- .constructor = njs_error_constructor,
+ .constructor = njs_native_ctor(njs_error_constructor, 1, 0),
+ .constructor_props = &njs_error_constructor_init,
.prototype_props = &njs_error_prototype_init,
- .constructor_props = &njs_error_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};


@@ -941,10 +941,10 @@ const njs_object_init_t njs_eval_error_


const njs_object_type_init_t njs_eval_error_type_init = {
- .constructor = njs_eval_error_constructor,
+ .constructor = njs_native_ctor(njs_eval_error_constructor, 1, 0),
+ .constructor_props = &njs_eval_error_constructor_init,
.prototype_props = &njs_eval_error_prototype_init,
- .constructor_props = &njs_eval_error_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};


@@ -1003,18 +1003,18 @@ const njs_object_init_t njs_internal_er


const njs_object_type_init_t njs_internal_error_type_init = {
- .constructor = njs_internal_error_constructor,
+ .constructor = njs_native_ctor(njs_internal_error_constructor, 1, 0),
+ .constructor_props = &njs_internal_error_constructor_init,
.prototype_props = &njs_internal_error_prototype_init,
- .constructor_props = &njs_internal_error_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};


const njs_object_type_init_t njs_memory_error_type_init = {
- .constructor = njs_memory_error_constructor,
+ .constructor = njs_native_ctor(njs_memory_error_constructor, 1, 0),
+ .constructor_props = &njs_memory_error_constructor_init,
.prototype_props = &njs_internal_error_prototype_init,
- .constructor_props = &njs_memory_error_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};


@@ -1053,10 +1053,10 @@ const njs_object_init_t njs_range_error


const njs_object_type_init_t njs_range_error_type_init = {
- .constructor = njs_range_error_constructor,
+ .constructor = njs_native_ctor(njs_range_error_constructor, 1, 0),
+ .constructor_props = &njs_range_error_constructor_init,
.prototype_props = &njs_range_error_prototype_init,
- .constructor_props = &njs_range_error_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};


@@ -1095,10 +1095,10 @@ const njs_object_init_t njs_reference_e


const njs_object_type_init_t njs_reference_error_type_init = {
- .constructor = njs_reference_error_constructor,
+ .constructor = njs_native_ctor(njs_reference_error_constructor, 1, 0),
+ .constructor_props = &njs_reference_error_constructor_init,
.prototype_props = &njs_reference_error_prototype_init,
- .constructor_props = &njs_reference_error_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};


@@ -1137,10 +1137,10 @@ const njs_object_init_t njs_syntax_erro


const njs_object_type_init_t njs_syntax_error_type_init = {
- .constructor = njs_syntax_error_constructor,
+ .constructor = njs_native_ctor(njs_syntax_error_constructor, 1, 0),
+ .constructor_props = &njs_syntax_error_constructor_init,
.prototype_props = &njs_syntax_error_prototype_init,
- .constructor_props = &njs_syntax_error_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};


@@ -1179,10 +1179,10 @@ const njs_object_init_t njs_type_error_


const njs_object_type_init_t njs_type_error_type_init = {
- .constructor = njs_type_error_constructor,
+ .constructor = njs_native_ctor(njs_type_error_constructor, 1, 0),
+ .constructor_props = &njs_type_error_constructor_init,
.prototype_props = &njs_type_error_prototype_init,
- .constructor_props = &njs_type_error_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};


@@ -1221,8 +1221,8 @@ const njs_object_init_t njs_uri_error_p


const njs_object_type_init_t njs_uri_error_type_init = {
- .constructor = njs_uri_error_constructor,
- .prototype_props = &njs_uri_error_prototype_init,
+ .constructor = njs_native_ctor(njs_uri_error_constructor, 1, 0),
.constructor_props = &njs_uri_error_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_props = &njs_uri_error_prototype_init,
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};
diff -r 19b741311270 -r 242395b814bb src/njs_function.c
--- a/src/njs_function.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_function.c Fri Dec 06 14:59:48 2019 +0300
@@ -58,7 +58,7 @@ njs_function_alloc(njs_vm_t *vm, njs_fun

do {
/* GC: retain closure. */
- function->closures[n] = closures[n];
+ njs_function_closures(function)[n] = closures[n];
n++;
} while (n < nesting);
}
@@ -104,10 +104,10 @@ njs_function_value_copy(njs_vm_t *vm, nj


njs_inline njs_closure_t **
-njs_function_closures(njs_vm_t *vm, njs_function_t *function)
+njs_function_active_closures(njs_vm_t *vm, njs_function_t *function)
{
- return (function->closure) ? function->closures
- : vm->active_frame->closures;
+ return (function->closure) ? njs_function_closures(function)
+ : njs_frame_closures(vm->active_frame);
}


@@ -185,13 +185,13 @@ njs_function_copy(njs_vm_t *vm, njs_func

copy->closure = 1;

- closures = njs_function_closures(vm, function);
+ closures = njs_function_active_closures(vm, function);

n = 0;

do {
/* GC: retain closure. */
- copy->closures[n] = closures[n];
+ njs_function_closures(copy)[n] = closures[n];
n++;
} while (n < nesting);

@@ -596,11 +596,11 @@ njs_function_lambda_call(njs_vm_t *vm)
nesting = lambda->nesting;

if (nesting != 0) {
- closures = njs_function_closures(vm, function);
+ closures = njs_function_active_closures(vm, function);
do {
closure = *closures++;

- frame->closures[n] = closure;
+ njs_frame_closures(frame)[n] = closure;
vm->scopes[NJS_SCOPE_CLOSURE + n] = &closure->u.values;

n++;
@@ -633,7 +633,7 @@ njs_function_lambda_call(njs_vm_t *vm)
} while (size != 0);
}

- frame->closures[n] = closure;
+ njs_frame_closures(frame)[n] = closure;
vm->scopes[NJS_SCOPE_CLOSURE + n] = &closure->u.values;
}

@@ -1351,11 +1351,11 @@ njs_prototype_function(njs_vm_t *vm, njs


const njs_object_type_init_t njs_function_type_init = {
- .constructor = njs_function_constructor,
- .prototype_props = &njs_function_prototype_init,
+ .constructor = njs_native_ctor(njs_function_constructor, 1, 0),
.constructor_props = &njs_function_constructor_init,
- .value = { .function = { .native = 1,
- .args_offset = 1,
- .u.native = njs_prototype_function,
- .object = { .type = NJS_FUNCTION } } },
+ .prototype_props = &njs_function_prototype_init,
+ .prototype_value = { .function = { .native = 1,
+ .args_offset = 1,
+ .u.native = njs_prototype_function,
+ .object = { .type = NJS_FUNCTION } } },
};
diff -r 19b741311270 -r 242395b814bb src/njs_function.h
--- a/src/njs_function.h Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_function.h Fri Dec 06 14:59:48 2019 +0300
@@ -90,11 +90,9 @@ struct njs_frame_s {
njs_frame_t *previous_active_frame;

njs_value_t *local;
-#if (NJS_SUNC)
- njs_closure_t *closures[1];
-#else
- njs_closure_t *closures[];
-#endif
+
+#define njs_frame_closures(frame) \
+ ((njs_closure_t **) ((u_char *) frame + sizeof(njs_frame_t)))
};


diff -r 19b741311270 -r 242395b814bb src/njs_number.c
--- a/src/njs_number.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_number.c Fri Dec 06 14:59:48 2019 +0300
@@ -1123,9 +1123,11 @@ njs_number_parse_float(njs_vm_t *vm, njs


const njs_object_type_init_t njs_number_type_init = {
- .constructor = njs_number_constructor,
- .prototype_props = &njs_number_prototype_init,
+ .constructor = njs_native_ctor(njs_number_constructor, 1, 0),
.constructor_props = &njs_number_constructor_init,
- .value = { .object_value = { .value = njs_value(NJS_NUMBER, 0, 0.0),
- .object = { .type = NJS_OBJECT_NUMBER } } },
+ .prototype_props = &njs_number_prototype_init,
+ .prototype_value = { .object_value = {
+ .value = njs_value(NJS_NUMBER, 0, 0.0),
+ .object = { .type = NJS_OBJECT_NUMBER } }
+ },
};
diff -r 19b741311270 -r 242395b814bb src/njs_object.c
--- a/src/njs_object.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_object.c Fri Dec 06 14:59:48 2019 +0300
@@ -2670,8 +2670,8 @@ njs_object_length(njs_vm_t *vm, njs_valu


const njs_object_type_init_t njs_obj_type_init = {
- .constructor = njs_object_constructor,
- .prototype_props = &njs_object_prototype_init,
+ .constructor = njs_native_ctor(njs_object_constructor, 1, 0),
.constructor_props = &njs_object_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_props = &njs_object_prototype_init,
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};
diff -r 19b741311270 -r 242395b814bb src/njs_regexp.c
--- a/src/njs_regexp.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_regexp.c Fri Dec 06 14:59:48 2019 +0300
@@ -1341,8 +1341,8 @@ const njs_object_init_t njs_regexp_prot


const njs_object_type_init_t njs_regexp_type_init = {
- .constructor = njs_regexp_constructor,
- .prototype_props = &njs_regexp_prototype_init,
+ .constructor = njs_native_ctor(njs_regexp_constructor, 2, 0),
.constructor_props = &njs_regexp_constructor_init,
- .value = { .object = { .type = NJS_REGEXP } },
+ .prototype_props = &njs_regexp_prototype_init,
+ .prototype_value = { .object = { .type = NJS_REGEXP } },
};
diff -r 19b741311270 -r 242395b814bb src/njs_string.c
--- a/src/njs_string.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_string.c Fri Dec 06 14:59:48 2019 +0300
@@ -5276,9 +5276,11 @@ njs_value_index(njs_vm_t *vm, const njs_


const njs_object_type_init_t njs_string_type_init = {
- .constructor = njs_string_constructor,
- .prototype_props = &njs_string_prototype_init,
+ .constructor = njs_native_ctor(njs_string_constructor, 1, 0),
.constructor_props = &njs_string_constructor_init,
- .value = { .object_value = { .value = njs_string(""),
- .object = { .type = NJS_OBJECT_STRING } } },
+ .prototype_props = &njs_string_prototype_init,
+ .prototype_value = { .object_value = {
+ .value = njs_string(""),
+ .object = { .type = NJS_OBJECT_STRING } }
+ },
};
diff -r 19b741311270 -r 242395b814bb src/njs_symbol.c
--- a/src/njs_symbol.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_symbol.c Fri Dec 06 14:59:48 2019 +0300
@@ -441,8 +441,8 @@ const njs_object_init_t njs_symbol_prot


const njs_object_type_init_t njs_symbol_type_init = {
- .constructor = njs_symbol_constructor,
- .prototype_props = &njs_symbol_prototype_init,
+ .constructor = njs_native_ctor(njs_symbol_constructor, 0, 0),
.constructor_props = &njs_symbol_constructor_init,
- .value = { .object = { .type = NJS_OBJECT } },
+ .prototype_props = &njs_symbol_prototype_init,
+ .prototype_value = { .object = { .type = NJS_OBJECT } },
};
diff -r 19b741311270 -r 242395b814bb src/njs_value.h
--- a/src/njs_value.h Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_value.h Fri Dec 06 14:59:48 2019 +0300
@@ -239,6 +239,15 @@ struct njs_function_s {
uint8_t args_offset;

uint8_t args_count:5;
+
+ /*
+ * If "closure" is true njs_closure_t[] is available right after the
+ * njs_function_t and njs_function_closures() may be used to access it.
+ */
+
+#define njs_function_closures(function) \
+ ((njs_closure_t **) ((u_char *) function + sizeof(njs_function_t)))
+
uint8_t closure:1;
uint8_t native:1;
uint8_t ctor:1;
@@ -252,11 +261,6 @@ struct njs_function_s {
} u;

njs_value_t *bound;
-#if (NJS_SUNC)
- njs_closure_t *closures[1];
-#else
- njs_closure_t *closures[];
-#endif
};


@@ -289,10 +293,10 @@ typedef union {


typedef struct {
- njs_function_native_t constructor;
+ njs_function_t constructor;
+ const njs_object_init_t *constructor_props;
const njs_object_init_t *prototype_props;
- const njs_object_init_t *constructor_props;
- njs_object_prototype_t value;
+ njs_object_prototype_t prototype_value;
} njs_object_type_init_t;


@@ -411,30 +415,39 @@ typedef struct {
}


-#define _njs_native_function(_function, _args_count, _magic) { \
+#define _njs_function(_function, _args_count, _ctor, _magic) { \
+ .native = 1, \
+ .magic = _magic, \
+ .args_count = _args_count, \
+ .ctor = _ctor, \
+ .args_offset = 1, \
+ .u.native = _function, \
+ .object = { .type = NJS_FUNCTION, \
+ .shared = 1, \
+ .extensible = 1 }, \
+}
+
+
+#define _njs_native_function(_func, _args, _ctor, _magic) { \
.data = { \
.type = NJS_FUNCTION, \
.truth = 1, \
- .u.function = & (njs_function_t) { \
- .native = 1, \
- .magic = _magic, \
- .args_count = _args_count, \
- .args_offset = 1, \
- .u.native = _function, \
- .object = { .type = NJS_FUNCTION, \
- .shared = 1, \
- .extensible = 1 }, \
- } \
+ .u.function = & (njs_function_t) _njs_function(_func, _args, \
+ _ctor, _magic) \
} \
}


#define njs_native_function(_function, _args_count) \
- _njs_native_function(_function, _args_count, 0)
+ _njs_native_function(_function, _args_count, 0, 0)


#define njs_native_function2(_function, _args_count, _magic) \
- _njs_native_function(_function, _args_count, _magic)
+ _njs_native_function(_function, _args_count, 0, _magic)
+
+
+#define njs_native_ctor(_function, _args_count, _magic) \
+ _njs_function(_function, _args_count, 1, _magic)


#define njs_prop_handler(_handler) { \
diff -r 19b741311270 -r 242395b814bb src/njs_vm.c
--- a/src/njs_vm.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_vm.c Fri Dec 06 14:59:48 2019 +0300
@@ -339,6 +339,7 @@ njs_vm_scopes_restore(njs_vm_t *vm, njs_
{
njs_uint_t n, nesting;
njs_value_t *args;
+ njs_closure_t **closures;
njs_function_t *function;

vm->top_frame = previous;
@@ -373,9 +374,10 @@ njs_vm_scopes_restore(njs_vm_t *vm, njs_
function = frame->native.function;

nesting = (function != NULL) ? function->u.lambda->nesting : 0;
+ closures = njs_frame_closures(frame);

for (n = 0; n <= nesting; n++) {
- vm->scopes[NJS_SCOPE_CLOSURE + n] = &frame->closures[n]->u.values;
+ vm->scopes[NJS_SCOPE_CLOSURE + n] = &closures[n]->u.values;
}

while (n < NJS_MAX_NESTING) {
diff -r 19b741311270 -r 242395b814bb src/njs_vmcode.c
--- a/src/njs_vmcode.c Fri Dec 06 14:44:54 2019 +0300
+++ b/src/njs_vmcode.c Fri Dec 06 14:59:48 2019 +0300
@@ -1002,7 +1002,8 @@ njs_vmcode_function(njs_vm_t *vm, u_char
code = (njs_vmcode_function_t *) pc;
lambda = code->lambda;

- function = njs_function_alloc(vm, lambda, vm->active_frame->closures, 0);
+ function = njs_function_alloc(vm, lambda,
+ njs_frame_closures(vm->active_frame), 0);
if (njs_slow_path(function == NULL)) {
return NJS_ERROR;
}
_______________________________________________
nginx-devel mailing list
nginx-devel@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx-devel
Subject Author Views Posted

[njs] Improved object type initialization structure.

Dmitry Volyntsev 282 December 06, 2019 07:18AM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 186
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready