| Index: src/factory.cc
|
| diff --git a/src/factory.cc b/src/factory.cc
|
| index 638e6aca9e91b06ff226cb9b7b5974529945743f..1c6458de6eb39f25a0e77e36816dd28d4dc71a94 100644
|
| --- a/src/factory.cc
|
| +++ b/src/factory.cc
|
| @@ -968,6 +968,12 @@ Handle<String> Factory::NumberToString(Handle<Object> number) {
|
| }
|
|
|
|
|
| +Handle<String> Factory::Uint32ToString(uint32_t value) {
|
| + CALL_HEAP_FUNCTION(isolate(),
|
| + isolate()->heap()->Uint32ToString(value), String);
|
| +}
|
| +
|
| +
|
| Handle<NumberDictionary> Factory::DictionaryAtNumberPut(
|
| Handle<NumberDictionary> dictionary,
|
| uint32_t key,
|
|
|