| 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/objects.h" | 5 #include "src/objects.h" |
| 6 | 6 |
| 7 #include "src/bootstrapper.h" | 7 #include "src/bootstrapper.h" |
| 8 #include "src/disasm.h" | 8 #include "src/disasm.h" |
| 9 #include "src/disassembler.h" | 9 #include "src/disassembler.h" |
| 10 #include "src/field-type.h" | 10 #include "src/field-type.h" |
| (...skipping 913 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 924 | 924 |
| 925 void AccessorPair::AccessorPairVerify() { | 925 void AccessorPair::AccessorPairVerify() { |
| 926 CHECK(IsAccessorPair()); | 926 CHECK(IsAccessorPair()); |
| 927 VerifyPointer(getter()); | 927 VerifyPointer(getter()); |
| 928 VerifyPointer(setter()); | 928 VerifyPointer(setter()); |
| 929 } | 929 } |
| 930 | 930 |
| 931 | 931 |
| 932 void AccessCheckInfo::AccessCheckInfoVerify() { | 932 void AccessCheckInfo::AccessCheckInfoVerify() { |
| 933 CHECK(IsAccessCheckInfo()); | 933 CHECK(IsAccessCheckInfo()); |
| 934 VerifyPointer(named_callback()); | |
| 935 VerifyPointer(indexed_callback()); | |
| 936 VerifyPointer(callback()); | 934 VerifyPointer(callback()); |
| 937 VerifyPointer(data()); | 935 VerifyPointer(data()); |
| 938 } | 936 } |
| 939 | 937 |
| 940 | 938 |
| 941 void InterceptorInfo::InterceptorInfoVerify() { | 939 void InterceptorInfo::InterceptorInfoVerify() { |
| 942 CHECK(IsInterceptorInfo()); | 940 CHECK(IsInterceptorInfo()); |
| 943 VerifyPointer(getter()); | 941 VerifyPointer(getter()); |
| 944 VerifyPointer(setter()); | 942 VerifyPointer(setter()); |
| 945 VerifyPointer(query()); | 943 VerifyPointer(query()); |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1325 | 1323 |
| 1326 // Both are done at the same time. | 1324 // Both are done at the same time. |
| 1327 CHECK_EQ(new_it.done(), old_it.done()); | 1325 CHECK_EQ(new_it.done(), old_it.done()); |
| 1328 } | 1326 } |
| 1329 | 1327 |
| 1330 | 1328 |
| 1331 #endif // DEBUG | 1329 #endif // DEBUG |
| 1332 | 1330 |
| 1333 } // namespace internal | 1331 } // namespace internal |
| 1334 } // namespace v8 | 1332 } // namespace v8 |
| OLD | NEW |