From d72e0281ff41a87c32aefd0876bace23470a4dc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 26 May 2023 16:17:12 +0200 Subject: chore: upgrade rusty_v8 to 0.73.0 (#19278) --- core/ops_builtin_v8.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'core') diff --git a/core/ops_builtin_v8.rs b/core/ops_builtin_v8.rs index 8da484225..8987a56b6 100644 --- a/core/ops_builtin_v8.rs +++ b/core/ops_builtin_v8.rs @@ -625,21 +625,21 @@ fn op_get_non_index_property_names<'a>( Err(_) => return None, }; - let mut property_filter = v8::ALL_PROPERTIES; + let mut property_filter = v8::PropertyFilter::ALL_PROPERTIES; if filter & 1 == 1 { - property_filter = property_filter | v8::ONLY_WRITABLE + property_filter = property_filter | v8::PropertyFilter::ONLY_WRITABLE } if filter & 2 == 2 { - property_filter = property_filter | v8::ONLY_ENUMERABLE + property_filter = property_filter | v8::PropertyFilter::ONLY_ENUMERABLE } if filter & 4 == 4 { - property_filter = property_filter | v8::ONLY_CONFIGURABLE + property_filter = property_filter | v8::PropertyFilter::ONLY_CONFIGURABLE } if filter & 8 == 8 { - property_filter = property_filter | v8::SKIP_STRINGS + property_filter = property_filter | v8::PropertyFilter::SKIP_STRINGS } if filter & 16 == 16 { - property_filter = property_filter | v8::SKIP_SYMBOLS + property_filter = property_filter | v8::PropertyFilter::SKIP_SYMBOLS } let maybe_names = obj.get_property_names( -- cgit v1.2.3