| Index: src/json-stringifier.h
|
| diff --git a/src/json-stringifier.h b/src/json-stringifier.h
|
| index 9579c78ff0774f4c18ae8e3ca79b427b939ba57a..efb71e5fb11d59f74fdfa3f2f31e94974670497b 100644
|
| --- a/src/json-stringifier.h
|
| +++ b/src/json-stringifier.h
|
| @@ -8,7 +8,6 @@
|
| #include "src/v8.h"
|
|
|
| #include "src/conversions.h"
|
| -#include "src/messages.h"
|
| #include "src/string-builder.h"
|
| #include "src/utils.h"
|
|
|
| @@ -273,8 +272,8 @@
|
| for (int i = 0; i < length; i++) {
|
| if (elements->get(i) == *object) {
|
| AllowHeapAllocation allow_to_return_error;
|
| - Handle<Object> error =
|
| - factory()->NewTypeError(MessageTemplate::kCircularStructure);
|
| + Handle<Object> error = factory()->NewTypeError(
|
| + "circular_structure", HandleVector<Object>(NULL, 0));
|
| isolate_->Throw(*error);
|
| return EXCEPTION;
|
| }
|
|
|