| 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 /** \mainpage V8 API Reference Guide | 5 /** \mainpage V8 API Reference Guide |
| 6 * | 6 * |
| 7 * V8 is Google's open source JavaScript engine. | 7 * V8 is Google's open source JavaScript engine. |
| 8 * | 8 * |
| 9 * This set of documents provides reference material generated from the | 9 * This set of documents provides reference material generated from the |
| 10 * V8 header file, include/v8.h. | 10 * V8 header file, include/v8.h. |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 class Arguments; | 139 class Arguments; |
| 140 class Heap; | 140 class Heap; |
| 141 class HeapObject; | 141 class HeapObject; |
| 142 class Isolate; | 142 class Isolate; |
| 143 class Object; | 143 class Object; |
| 144 struct StreamedSource; | 144 struct StreamedSource; |
| 145 template<typename T> class CustomArguments; | 145 template<typename T> class CustomArguments; |
| 146 class PropertyCallbackArguments; | 146 class PropertyCallbackArguments; |
| 147 class FunctionCallbackArguments; | 147 class FunctionCallbackArguments; |
| 148 class GlobalHandles; | 148 class GlobalHandles; |
| 149 } | 149 } // namespace internal |
| 150 | 150 |
| 151 | 151 |
| 152 /** | 152 /** |
| 153 * General purpose unique identifier. | 153 * General purpose unique identifier. |
| 154 */ | 154 */ |
| 155 class UniqueId { | 155 class UniqueId { |
| 156 public: | 156 public: |
| 157 explicit UniqueId(intptr_t data) | 157 explicit UniqueId(intptr_t data) |
| 158 : data_(data) {} | 158 : data_(data) {} |
| 159 | 159 |
| (...skipping 8194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8354 */ | 8354 */ |
| 8355 | 8355 |
| 8356 | 8356 |
| 8357 } // namespace v8 | 8357 } // namespace v8 |
| 8358 | 8358 |
| 8359 | 8359 |
| 8360 #undef TYPE_CHECK | 8360 #undef TYPE_CHECK |
| 8361 | 8361 |
| 8362 | 8362 |
| 8363 #endif // V8_H_ | 8363 #endif // V8_H_ |
| OLD | NEW |