OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/api.h" | 5 #include "src/api.h" |
6 | 6 |
7 #include <string.h> // For memcpy, strlen. | 7 #include <string.h> // For memcpy, strlen. |
8 #ifdef V8_USE_ADDRESS_SANITIZER | 8 #ifdef V8_USE_ADDRESS_SANITIZER |
9 #include <sanitizer/asan_interface.h> | 9 #include <sanitizer/asan_interface.h> |
10 #endif // V8_USE_ADDRESS_SANITIZER | 10 #endif // V8_USE_ADDRESS_SANITIZER |
(...skipping 2760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2771 | 2771 |
2772 MaybeLocal<String> JSON::Stringify(Local<Context> context, | 2772 MaybeLocal<String> JSON::Stringify(Local<Context> context, |
2773 Local<Object> json_object, | 2773 Local<Object> json_object, |
2774 Local<String> gap) { | 2774 Local<String> gap) { |
2775 PREPARE_FOR_EXECUTION(context, JSON, Stringify, String); | 2775 PREPARE_FOR_EXECUTION(context, JSON, Stringify, String); |
2776 i::Handle<i::Object> object = Utils::OpenHandle(*json_object); | 2776 i::Handle<i::Object> object = Utils::OpenHandle(*json_object); |
2777 i::Handle<i::String> gap_string = gap.IsEmpty() | 2777 i::Handle<i::String> gap_string = gap.IsEmpty() |
2778 ? isolate->factory()->empty_string() | 2778 ? isolate->factory()->empty_string() |
2779 : Utils::OpenHandle(*gap); | 2779 : Utils::OpenHandle(*gap); |
2780 i::Handle<i::Object> maybe; | 2780 i::Handle<i::Object> maybe; |
2781 has_pending_exception = !i::BasicJsonStringifier(isolate, gap_string) | 2781 has_pending_exception = !i::BasicJsonStringifier(isolate) |
2782 .Stringify(object) | 2782 .Stringify(object, gap_string) |
2783 .ToHandle(&maybe); | 2783 .ToHandle(&maybe); |
2784 RETURN_ON_FAILED_EXECUTION(String); | 2784 RETURN_ON_FAILED_EXECUTION(String); |
2785 Local<String> result; | 2785 Local<String> result; |
2786 has_pending_exception = | 2786 has_pending_exception = |
2787 !ToLocal<String>(i::Object::ToString(isolate, maybe), &result); | 2787 !ToLocal<String>(i::Object::ToString(isolate, maybe), &result); |
2788 RETURN_ON_FAILED_EXECUTION(String); | 2788 RETURN_ON_FAILED_EXECUTION(String); |
2789 RETURN_ESCAPED(result); | 2789 RETURN_ESCAPED(result); |
2790 } | 2790 } |
2791 | 2791 |
2792 // --- D a t a --- | 2792 // --- D a t a --- |
(...skipping 6016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8809 Address callback_address = | 8809 Address callback_address = |
8810 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback)); | 8810 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback)); |
8811 VMState<EXTERNAL> state(isolate); | 8811 VMState<EXTERNAL> state(isolate); |
8812 ExternalCallbackScope call_scope(isolate, callback_address); | 8812 ExternalCallbackScope call_scope(isolate, callback_address); |
8813 callback(info); | 8813 callback(info); |
8814 } | 8814 } |
8815 | 8815 |
8816 | 8816 |
8817 } // namespace internal | 8817 } // namespace internal |
8818 } // namespace v8 | 8818 } // namespace v8 |
OLD | NEW |