| 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 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 731 | 731 |
| 732 | 732 |
| 733 /** | 733 /** |
| 734 * A PersistentBase which has move semantics. | 734 * A PersistentBase which has move semantics. |
| 735 * | 735 * |
| 736 * Note: Persistent class hierarchy is subject to future changes. | 736 * Note: Persistent class hierarchy is subject to future changes. |
| 737 */ | 737 */ |
| 738 template<class T> | 738 template<class T> |
| 739 class UniquePersistent : public PersistentBase<T> { | 739 class UniquePersistent : public PersistentBase<T> { |
| 740 struct RValue { | 740 struct RValue { |
| 741 V8_INLINE explicit RValue(UniquePersistent* object) : object(object) {} | 741 V8_INLINE explicit RValue(UniquePersistent* obj) : object(obj) {} |
| 742 UniquePersistent* object; | 742 UniquePersistent* object; |
| 743 }; | 743 }; |
| 744 | 744 |
| 745 public: | 745 public: |
| 746 /** | 746 /** |
| 747 * A UniquePersistent with no storage cell. | 747 * A UniquePersistent with no storage cell. |
| 748 */ | 748 */ |
| 749 V8_INLINE UniquePersistent() : PersistentBase<T>(0) { } | 749 V8_INLINE UniquePersistent() : PersistentBase<T>(0) { } |
| 750 /** | 750 /** |
| 751 * Construct a UniquePersistent from a Handle. | 751 * Construct a UniquePersistent from a Handle. |
| (...skipping 5694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6446 */ | 6446 */ |
| 6447 | 6447 |
| 6448 | 6448 |
| 6449 } // namespace v8 | 6449 } // namespace v8 |
| 6450 | 6450 |
| 6451 | 6451 |
| 6452 #undef TYPE_CHECK | 6452 #undef TYPE_CHECK |
| 6453 | 6453 |
| 6454 | 6454 |
| 6455 #endif // V8_H_ | 6455 #endif // V8_H_ |
| OLD | NEW |