2012-10-22 14:22:58 +00:00
|
|
|
// Copyright 2012 the V8 project authors. All rights reserved.
|
2014-04-29 06:42:26 +00:00
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
2012-10-22 14:22:58 +00:00
|
|
|
|
|
|
|
#ifndef V8_JSON_STRINGIFIER_H_
|
|
|
|
#define V8_JSON_STRINGIFIER_H_
|
|
|
|
|
2016-05-23 10:35:28 +00:00
|
|
|
#include "src/objects.h"
|
2012-10-22 14:22:58 +00:00
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
|
2018-07-31 11:57:08 +00:00
|
|
|
V8_WARN_UNUSED_RESULT MaybeHandle<Object> JsonStringify(Isolate* isolate,
|
|
|
|
Handle<Object> object,
|
|
|
|
Handle<Object> replacer,
|
|
|
|
Handle<Object> gap);
|
2015-09-30 13:46:56 +00:00
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|
2012-10-22 14:22:58 +00:00
|
|
|
|
|
|
|
#endif // V8_JSON_STRINGIFIER_H_
|