Skip to content

Commit 852ba3a

Browse files
committed
src: sort ENVIRONMENT_STRONG_PERSISTENT_PROPERTIES
PR-URL: #19627 Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 376f949 commit 852ba3a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/env.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -292,24 +292,25 @@ struct PackageConfig {
292292

293293
#define ENVIRONMENT_STRONG_PERSISTENT_PROPERTIES(V) \
294294
V(as_external, v8::External) \
295+
V(async_hooks_after_function, v8::Function) \
296+
V(async_hooks_before_function, v8::Function) \
297+
V(async_hooks_binding, v8::Object) \
295298
V(async_hooks_destroy_function, v8::Function) \
296299
V(async_hooks_init_function, v8::Function) \
297-
V(async_hooks_before_function, v8::Function) \
298-
V(async_hooks_after_function, v8::Function) \
299300
V(async_hooks_promise_resolve_function, v8::Function) \
300-
V(async_hooks_binding, v8::Object) \
301301
V(buffer_prototype_object, v8::Object) \
302302
V(context, v8::Context) \
303303
V(domain_callback, v8::Function) \
304+
V(fdclose_constructor_template, v8::ObjectTemplate) \
304305
V(fd_constructor_template, v8::ObjectTemplate) \
305306
V(filehandlereadwrap_template, v8::ObjectTemplate) \
306307
V(fsreqpromise_constructor_template, v8::ObjectTemplate) \
307-
V(fdclose_constructor_template, v8::ObjectTemplate) \
308+
V(fs_use_promises_symbol, v8::Symbol) \
308309
V(host_import_module_dynamically_callback, v8::Function) \
309310
V(host_initialize_import_meta_object_callback, v8::Function) \
310311
V(http2ping_constructor_template, v8::ObjectTemplate) \
311-
V(http2stream_constructor_template, v8::ObjectTemplate) \
312312
V(http2settings_constructor_template, v8::ObjectTemplate) \
313+
V(http2stream_constructor_template, v8::ObjectTemplate) \
313314
V(immediate_callback_function, v8::Function) \
314315
V(inspector_console_api_object, v8::Object) \
315316
V(pbkdf2_constructor_template, v8::ObjectTemplate) \
@@ -334,8 +335,7 @@ struct PackageConfig {
334335
V(udp_constructor_function, v8::Function) \
335336
V(vm_parsing_context_symbol, v8::Symbol) \
336337
V(url_constructor_function, v8::Function) \
337-
V(write_wrap_template, v8::ObjectTemplate) \
338-
V(fs_use_promises_symbol, v8::Symbol)
338+
V(write_wrap_template, v8::ObjectTemplate)
339339

340340
class Environment;
341341

0 commit comments

Comments
 (0)