OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 #ifndef V8_OBJECTS_H_ | 5 #ifndef V8_OBJECTS_H_ |
6 #define V8_OBJECTS_H_ | 6 #define V8_OBJECTS_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 #include <memory> | 9 #include <memory> |
10 | 10 |
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
995 V(Callable) \ | 995 V(Callable) \ |
996 V(CallHandlerInfo) \ | 996 V(CallHandlerInfo) \ |
997 V(Cell) \ | 997 V(Cell) \ |
998 V(Code) \ | 998 V(Code) \ |
999 V(CodeCacheHashTable) \ | 999 V(CodeCacheHashTable) \ |
1000 V(CompilationCacheTable) \ | 1000 V(CompilationCacheTable) \ |
1001 V(ConsString) \ | 1001 V(ConsString) \ |
1002 V(ConstantElementsPair) \ | 1002 V(ConstantElementsPair) \ |
1003 V(Constructor) \ | 1003 V(Constructor) \ |
1004 V(Context) \ | 1004 V(Context) \ |
| 1005 V(CoverageInfo) \ |
1005 V(DeoptimizationInputData) \ | 1006 V(DeoptimizationInputData) \ |
1006 V(DeoptimizationOutputData) \ | 1007 V(DeoptimizationOutputData) \ |
1007 V(DependentCode) \ | 1008 V(DependentCode) \ |
1008 V(DescriptorArray) \ | 1009 V(DescriptorArray) \ |
1009 V(Dictionary) \ | 1010 V(Dictionary) \ |
1010 V(External) \ | 1011 V(External) \ |
1011 V(ExternalOneByteString) \ | 1012 V(ExternalOneByteString) \ |
1012 V(ExternalString) \ | 1013 V(ExternalString) \ |
1013 V(ExternalTwoByteString) \ | 1014 V(ExternalTwoByteString) \ |
1014 V(FeedbackMetadata) \ | 1015 V(FeedbackMetadata) \ |
(...skipping 7425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8440 } | 8441 } |
8441 }; | 8442 }; |
8442 | 8443 |
8443 | 8444 |
8444 } // NOLINT, false-positive due to second-order macros. | 8445 } // NOLINT, false-positive due to second-order macros. |
8445 } // NOLINT, false-positive due to second-order macros. | 8446 } // NOLINT, false-positive due to second-order macros. |
8446 | 8447 |
8447 #include "src/objects/object-macros-undef.h" | 8448 #include "src/objects/object-macros-undef.h" |
8448 | 8449 |
8449 #endif // V8_OBJECTS_H_ | 8450 #endif // V8_OBJECTS_H_ |
OLD | NEW |