| Index: src/objects.cc
|
| diff --git a/src/objects.cc b/src/objects.cc
|
| index 3fb447fcc8ee8d310d6b16c8f31a49b6525ee745..ae560489c15f29a2fa80b0db5aeb551c6eb569a5 100644
|
| --- a/src/objects.cc
|
| +++ b/src/objects.cc
|
| @@ -10104,20 +10104,16 @@ bool JSFunction::PassesFilter(const char* raw_filter) {
|
| }
|
|
|
|
|
| -MaybeObject* Oddball::Initialize(Heap* heap,
|
| - const char* to_string,
|
| - Object* to_number,
|
| - byte kind) {
|
| - String* internalized_to_string;
|
| - { MaybeObject* maybe_string =
|
| - heap->InternalizeUtf8String(
|
| - CStrVector(to_string));
|
| - if (!maybe_string->To(&internalized_to_string)) return maybe_string;
|
| - }
|
| - set_to_string(internalized_to_string);
|
| - set_to_number(to_number);
|
| - set_kind(kind);
|
| - return this;
|
| +void Oddball::Initialize(Isolate* isolate,
|
| + Handle<Oddball> oddball,
|
| + const char* to_string,
|
| + Handle<Object> to_number,
|
| + byte kind) {
|
| + Handle<String> internalized_to_string =
|
| + isolate->factory()->InternalizeUtf8String(CStrVector(to_string));
|
| + oddball->set_to_string(*internalized_to_string);
|
| + oddball->set_to_number(*to_number);
|
| + oddball->set_kind(kind);
|
| }
|
|
|
|
|
| @@ -14436,6 +14432,10 @@ Dictionary<SeededNumberDictionary, SeededNumberDictionaryShape, uint32_t>::
|
|
|
| template Handle<NameDictionary>
|
| HashTable<NameDictionary, NameDictionaryShape, Name*>::
|
| + New(Isolate*, int, MinimumCapacity, PretenureFlag);
|
| +
|
| +template Handle<NameDictionary>
|
| +HashTable<NameDictionary, NameDictionaryShape, Name*>::
|
| Shrink(Handle<NameDictionary>, Name* n);
|
|
|
| template Handle<SeededNumberDictionary>
|
|
|