diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-05-26 16:17:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 16:17:12 +0200 |
commit | d72e0281ff41a87c32aefd0876bace23470a4dc5 (patch) | |
tree | e3ada1afd22d5d53e1fcacaea6b9ba5fa5f3fe55 /core | |
parent | 160fe9787ee33c5cfda7218d4ca232345c7fa06e (diff) |
chore: upgrade rusty_v8 to 0.73.0 (#19278)
Diffstat (limited to 'core')
-rw-r--r-- | core/ops_builtin_v8.rs | 12 |
1 files changed, 6 insertions, 6 deletions
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( |