@@ -295,7 +295,6 @@ DEFINE_BOOL(js_shipping, true, "enable all shipped JavaScript features")
295
295
// Features that are complete (but still behind the --harmony flag).
296
296
#define HARMONY_STAGED_BASE (V )
297
297
#define JAVASCRIPT_STAGED_FEATURES_BASE (V ) \
298
- V (js_explicit_resource_management, " explicit resource management" ) \
299
298
V (js_float16array, \
300
299
" Float16Array, Math.f16round, DataView.getFloat16, DataView.setFloat16" )
301
300
@@ -311,7 +310,7 @@ DEFINE_BOOL(js_shipping, true, "enable all shipped JavaScript features")
311
310
#endif
312
311
313
312
// Features that are shipping (turned on by default, but internal flag remains).
314
- #define HARMONY_SHIPPING_BASE (V ) \
313
+ #define HARMONY_SHIPPING_BASE (V ) \
315
314
V (harmony_import_attributes, " harmony import attributes" )
316
315
317
316
#define JAVASCRIPT_SHIPPING_FEATURES_BASE (V ) \
@@ -320,7 +319,8 @@ DEFINE_BOOL(js_shipping, true, "enable all shipped JavaScript features")
320
319
V(js_promise_try, " Promise.try" ) \
321
320
V(js_atomics_pause, " Atomics.pause" ) \
322
321
V(js_error_iserror, " Error.isError" ) \
323
- V(js_regexp_escape, " RegExp.escape" )
322
+ V(js_regexp_escape, " RegExp.escape" ) \
323
+ V(js_explicit_resource_management, " explicit resource management" )
324
324
325
325
#ifdef V8_INTL_SUPPORT
326
326
#define HARMONY_SHIPPING (V ) HARMONY_SHIPPING_BASE(V)
0 commit comments