json-stringifier.h 707 Bytes
Newer Older
1
// Copyright 2012 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

Yang Guo's avatar
Yang Guo committed
5 6
#ifndef V8_JSON_JSON_STRINGIFIER_H_
#define V8_JSON_JSON_STRINGIFIER_H_
7

8
#include "src/objects/objects.h"
9 10 11 12

namespace v8 {
namespace internal {

13 14 15 16
V8_WARN_UNUSED_RESULT MaybeHandle<Object> JsonStringify(Isolate* isolate,
                                                        Handle<Object> object,
                                                        Handle<Object> replacer,
                                                        Handle<Object> gap);
17 18
}  // namespace internal
}  // namespace v8
19

Yang Guo's avatar
Yang Guo committed
20
#endif  // V8_JSON_JSON_STRINGIFIER_H_