Index: src/json-stringifier.h |
diff --git a/src/json-stringifier.h b/src/json-stringifier.h |
index 7a8af30eb8f768c91709825746824b7f71650e9a..426a3707cddd4a77672e3439371533fc43b13fc4 100644 |
--- a/src/json-stringifier.h |
+++ b/src/json-stringifier.h |
@@ -216,7 +216,8 @@ BasicJsonStringifier::BasicJsonStringifier(Isolate* isolate) |
factory_->ToObject(factory_->empty_string())); |
part_length_ = kInitialPartLength; |
current_part_ = factory_->NewRawOneByteString(kInitialPartLength); |
- tojson_symbol_ = factory_->LookupAsciiSymbol("toJSON"); |
+ tojson_symbol_ = |
+ factory_->LookupOneByteSymbol(STATIC_ASCII_VECTOR("toJSON")); |
stack_ = factory_->NewJSArray(8); |
} |