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

Unified Diff: src/ast.cc

Issue 6335010: Strict mode object literal validation (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix assert Created 9 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
« no previous file with comments | « no previous file | src/messages.js » ('j') | src/parser.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.cc
diff --git a/src/ast.cc b/src/ast.cc
index fa01be016c038714976af27bb8c532ef39576bb5..15f9a0ea6c983df35a7b217717a7059eb47a38da 100644
--- a/src/ast.cc
+++ b/src/ast.cc
@@ -239,16 +239,18 @@ void ObjectLiteral::CalculateEmitStore() {
HashMap* table;
void* key;
uint32_t index;
- if (handle->IsSymbol()) {
+
+ // Check for array index first because symbol may still be an array index:
+ // var y = {get "1234"() {return 42; }};
+ if (handle->ToArrayIndex(&index)) {
Lasse Reichstein 2011/01/25 11:19:03 I already committed a patch for this case. During
Martin Maly 2011/01/25 18:29:23 Thanks, I reverted this part of my change.
+ key = handle.location();
+ hash = index;
+ table = &elements;
+ } else if (handle->IsSymbol()) {
Handle<String> name(String::cast(*handle));
- ASSERT(!name->AsArrayIndex(&index));
key = name.location();
hash = name->Hash();
table = &properties;
- } else if (handle->ToArrayIndex(&index)) {
- key = handle.location();
- hash = index;
- table = &elements;
} else {
ASSERT(handle->IsNumber());
double num = handle->Number();
« no previous file with comments | « no previous file | src/messages.js » ('j') | src/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698