| Index: src/string-builder.cc
|
| diff --git a/src/string-builder.cc b/src/string-builder.cc
|
| index 6c5144d574aea64ea2ccc04fadf1afdc2e7d8999..e24def6b683fe903c7839af52b586f44114cb9de 100644
|
| --- a/src/string-builder.cc
|
| +++ b/src/string-builder.cc
|
| @@ -52,7 +52,7 @@
|
| part_length_(kInitialPartLength),
|
| current_index_(0) {
|
| // Create an accumulator handle starting with the empty string.
|
| - accumulator_ = Handle<String>::New(isolate->heap()->empty_string(), isolate);
|
| + accumulator_ = Handle<String>(isolate->heap()->empty_string(), isolate);
|
| current_part_ =
|
| factory()->NewRawOneByteString(part_length_).ToHandleChecked();
|
| }
|
|
|