| Index: src/handles.cc
|
| diff --git a/src/handles.cc b/src/handles.cc
|
| index 4cb1827d8edc028f99cffd10ec9f503a2844d1ce..d5fbb3a1341bd0bb8539f93d264413986ff74b8d 100644
|
| --- a/src/handles.cc
|
| +++ b/src/handles.cc
|
| @@ -229,11 +229,12 @@ Handle<Object> GetProperty(Isolate* isolate,
|
| }
|
|
|
|
|
| -Handle<Object> LookupSingleCharacterStringFromCode(Isolate* isolate,
|
| +Handle<String> LookupSingleCharacterStringFromCode(Isolate* isolate,
|
| uint32_t index) {
|
| CALL_HEAP_FUNCTION(
|
| isolate,
|
| - isolate->heap()->LookupSingleCharacterStringFromCode(index), Object);
|
| + isolate->heap()->LookupSingleCharacterStringFromCode(index),
|
| + String);
|
| }
|
|
|
|
|
|
|