| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 template<class T> class NonCopyablePersistentTraits; | 126 template<class T> class NonCopyablePersistentTraits; |
| 127 template<class T> class PersistentBase; | 127 template<class T> class PersistentBase; |
| 128 template<class T, | 128 template<class T, |
| 129 class M = NonCopyablePersistentTraits<T> > class Persistent; | 129 class M = NonCopyablePersistentTraits<T> > class Persistent; |
| 130 template<class T> class UniquePersistent; | 130 template<class T> class UniquePersistent; |
| 131 template<class K, class V, class T> class PersistentValueMap; | 131 template<class K, class V, class T> class PersistentValueMap; |
| 132 template<class T, class P> class WeakCallbackObject; | 132 template<class T, class P> class WeakCallbackObject; |
| 133 class FunctionTemplate; | 133 class FunctionTemplate; |
| 134 class ObjectTemplate; | 134 class ObjectTemplate; |
| 135 class Data; | 135 class Data; |
| 136 template<typename T> class FunctionCallbackInfo; |
| 136 template<typename T> class PropertyCallbackInfo; | 137 template<typename T> class PropertyCallbackInfo; |
| 137 class StackTrace; | 138 class StackTrace; |
| 138 class StackFrame; | 139 class StackFrame; |
| 139 class Isolate; | 140 class Isolate; |
| 140 class DeclaredAccessorDescriptor; | 141 class DeclaredAccessorDescriptor; |
| 141 class ObjectOperationDescriptor; | 142 class ObjectOperationDescriptor; |
| 142 class RawOperationDescriptor; | 143 class RawOperationDescriptor; |
| 143 class CallHandlerHelper; | 144 class CallHandlerHelper; |
| 144 class EscapableHandleScope; | 145 class EscapableHandleScope; |
| 145 template<typename T> class ReturnValue; | 146 template<typename T> class ReturnValue; |
| (...skipping 6506 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6652 */ | 6653 */ |
| 6653 | 6654 |
| 6654 | 6655 |
| 6655 } // namespace v8 | 6656 } // namespace v8 |
| 6656 | 6657 |
| 6657 | 6658 |
| 6658 #undef TYPE_CHECK | 6659 #undef TYPE_CHECK |
| 6659 | 6660 |
| 6660 | 6661 |
| 6661 #endif // V8_H_ | 6662 #endif // V8_H_ |
| OLD | NEW |