| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 #define V8_DEPRECATED(declarator) __declspec(deprecated) declarator | 90 #define V8_DEPRECATED(declarator) __declspec(deprecated) declarator |
| 91 #else | 91 #else |
| 92 #define V8_DEPRECATED(declarator) declarator | 92 #define V8_DEPRECATED(declarator) declarator |
| 93 #endif | 93 #endif |
| 94 | 94 |
| 95 /** | 95 /** |
| 96 * The v8 JavaScript engine. | 96 * The v8 JavaScript engine. |
| 97 */ | 97 */ |
| 98 namespace v8 { | 98 namespace v8 { |
| 99 | 99 |
| 100 class AccessorInfo; |
| 101 class AccessorSignature; |
| 102 class Array; |
| 103 class Boolean; |
| 104 class BooleanObject; |
| 100 class Context; | 105 class Context; |
| 101 class String; | 106 class Data; |
| 102 class StringObject; | 107 class Date; |
| 103 class Value; | 108 class DeclaredAccessorDescriptor; |
| 104 class Utils; | 109 class External; |
| 110 class Function; |
| 111 class FunctionTemplate; |
| 112 class ImplementationUtilities; |
| 113 class Int32; |
| 114 class Integer; |
| 115 class Isolate; |
| 105 class Number; | 116 class Number; |
| 106 class NumberObject; | 117 class NumberObject; |
| 107 class Object; | 118 class Object; |
| 108 class Array; | 119 class ObjectOperationDescriptor; |
| 109 class Int32; | 120 class ObjectTemplate; |
| 121 class Primitive; |
| 122 class RawOperationDescriptor; |
| 123 class Signature; |
| 124 class StackFrame; |
| 125 class StackTrace; |
| 126 class String; |
| 127 class StringObject; |
| 110 class Uint32; | 128 class Uint32; |
| 111 class External; | 129 class Utils; |
| 112 class Primitive; | 130 class Value; |
| 113 class Boolean; | |
| 114 class BooleanObject; | |
| 115 class Integer; | |
| 116 class Function; | |
| 117 class Date; | |
| 118 class ImplementationUtilities; | |
| 119 class Signature; | |
| 120 class AccessorSignature; | |
| 121 template <class T> class Handle; | 131 template <class T> class Handle; |
| 122 template <class T> class Local; | 132 template <class T> class Local; |
| 123 template <class T> class Persistent; | 133 template <class T> class Persistent; |
| 124 class FunctionTemplate; | |
| 125 class ObjectTemplate; | |
| 126 class Data; | |
| 127 class AccessorInfo; | |
| 128 class StackTrace; | |
| 129 class StackFrame; | |
| 130 class Isolate; | |
| 131 class DeclaredAccessorDescriptor; | |
| 132 class ObjectOperationDescriptor; | |
| 133 class RawOperationDescriptor; | |
| 134 | 134 |
| 135 namespace internal { | 135 namespace internal { |
| 136 | 136 |
| 137 class Arguments; | 137 class Arguments; |
| 138 class Object; | |
| 139 class Heap; | 138 class Heap; |
| 140 class HeapObject; | 139 class HeapObject; |
| 141 class Isolate; | 140 class Isolate; |
| 141 class Object; |
| 142 |
| 142 } | 143 } |
| 143 | 144 |
| 144 | 145 |
| 145 // --- Weak Handles --- | 146 // --- Weak Handles --- |
| 146 | 147 |
| 147 | 148 |
| 148 /** | 149 /** |
| 149 * A weak reference callback function. | 150 * A weak reference callback function. |
| 150 * | 151 * |
| 151 * This callback should either explicitly invoke Dispose on |object| if | 152 * This callback should either explicitly invoke Dispose on |object| if |
| (...skipping 4873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5025 | 5026 |
| 5026 | 5027 |
| 5027 } // namespace v8 | 5028 } // namespace v8 |
| 5028 | 5029 |
| 5029 | 5030 |
| 5030 #undef V8EXPORT | 5031 #undef V8EXPORT |
| 5031 #undef TYPE_CHECK | 5032 #undef TYPE_CHECK |
| 5032 | 5033 |
| 5033 | 5034 |
| 5034 #endif // V8_H_ | 5035 #endif // V8_H_ |
| OLD | NEW |