| Index: src/ast.cc
 | 
| ===================================================================
 | 
| --- src/ast.cc	(revision 10795)
 | 
| +++ src/ast.cc	(working copy)
 | 
| @@ -237,8 +237,8 @@
 | 
|  
 | 
|  
 | 
|  void ObjectLiteral::CalculateEmitStore() {
 | 
| -  HashMap properties(&IsEqualString);
 | 
| -  HashMap elements(&IsEqualNumber);
 | 
| +  ZoneHashMap properties(&IsEqualString);
 | 
| +  ZoneHashMap elements(&IsEqualNumber);
 | 
|    for (int i = this->properties()->length() - 1; i >= 0; i--) {
 | 
|      ObjectLiteral::Property* property = this->properties()->at(i);
 | 
|      Literal* literal = property->key();
 | 
| @@ -249,7 +249,7 @@
 | 
|      }
 | 
|  
 | 
|      uint32_t hash;
 | 
| -    HashMap* table;
 | 
| +    ZoneHashMap* table;
 | 
|      void* key;
 | 
|      Factory* factory = Isolate::Current()->factory();
 | 
|      if (handle->IsSymbol()) {
 | 
| 
 |