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

Unified Diff: src/factory.h

Issue 151193: Fixed arm/mac errors and presubmitting 2324. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 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/code-stubs.cc ('k') | src/factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/factory.h
===================================================================
--- src/factory.h (revision 2326)
+++ src/factory.h (working copy)
@@ -47,8 +47,10 @@
// Allocate a new fixed array with non-existing entries (the hole).
static Handle<FixedArray> NewFixedArrayWithHoles(int size);
- static Handle<Dictionary> NewDictionary(int at_least_space_for);
+ static Handle<NumberDictionary> NewNumberDictionary(int at_least_space_for);
+ static Handle<StringDictionary> NewStringDictionary(int at_least_space_for);
+
static Handle<DescriptorArray> NewDescriptorArray(int number_of_descriptors);
static Handle<String> LookupSymbol(Vector<const char> str);
@@ -313,9 +315,10 @@
static Handle<SharedFunctionInfo> NewSharedFunctionInfo(Handle<String> name);
- static Handle<Dictionary> DictionaryAtNumberPut(Handle<Dictionary>,
- uint32_t key,
- Handle<Object> value);
+ static Handle<NumberDictionary> DictionaryAtNumberPut(
+ Handle<NumberDictionary>,
+ uint32_t key,
+ Handle<Object> value);
#ifdef ENABLE_DEBUGGER_SUPPORT
static Handle<DebugInfo> NewDebugInfo(Handle<SharedFunctionInfo> shared);
« no previous file with comments | « src/code-stubs.cc ('k') | src/factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698