Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(97)

Unified Diff: src/lookup.h

Issue 2096933002: Remove all harmony runtime flags which shipped in M51 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Review comments Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/js/typedarray.js ('k') | src/messages.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/lookup.h
diff --git a/src/lookup.h b/src/lookup.h
index bb65639165ad23324f5cee1668d689c72eb860c8..87821c2b7ef8a09ac111f75b8a69583cd21fa475 100644
--- a/src/lookup.h
+++ b/src/lookup.h
@@ -262,10 +262,9 @@ class LookupIterator final BASE_EMBEDDED {
inline void UpdateProtector() {
if (IsElement()) return;
if (*name_ == heap()->is_concat_spreadable_symbol() ||
- (FLAG_harmony_species && (*name_ == heap()->constructor_string() ||
- *name_ == heap()->species_symbol())) ||
- (FLAG_harmony_instanceof &&
- (*name_ == heap()->has_instance_symbol()))) {
+ *name_ == heap()->constructor_string() ||
+ *name_ == heap()->species_symbol() ||
+ *name_ == heap()->has_instance_symbol()) {
InternalUpdateProtector();
}
}
« no previous file with comments | « src/js/typedarray.js ('k') | src/messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698