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

Unified Diff: src/compiler/access-info.cc

Issue 2632503003: [runtime] Allocate space for computed property names (Closed)
Patch Set: Fix some variable names. Created 3 years, 11 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
Index: src/compiler/access-info.cc
diff --git a/src/compiler/access-info.cc b/src/compiler/access-info.cc
index f23154aa45aa53674d53f7fb13048347a1adf5ce..cc5df613d6325303720db66be5b7f7938684a0cc 100644
--- a/src/compiler/access-info.cc
+++ b/src/compiler/access-info.cc
@@ -391,6 +391,7 @@ bool AccessInfoFactory::ComputePropertyAccessInfo(
// Don't search on the prototype when storing in literals
if (access_mode == AccessMode::kStoreInLiteral) {
+ return LookupTransition(receiver_map, name, holder, access_info);
return false;
Toon Verwaest 2017/01/18 08:49:53 drop return false
Franzi 2017/01/18 14:23:10 Done.
}

Powered by Google App Engine
This is Rietveld 408576698