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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 V(Struct3) \ | 77 V(Struct3) \ |
78 V(Struct4) \ | 78 V(Struct4) \ |
79 V(Struct5) \ | 79 V(Struct5) \ |
80 V(Struct6) \ | 80 V(Struct6) \ |
81 V(Struct7) \ | 81 V(Struct7) \ |
82 V(Struct8) \ | 82 V(Struct8) \ |
83 V(Struct9) \ | 83 V(Struct9) \ |
84 V(StructGeneric) \ | 84 V(StructGeneric) \ |
85 V(ConsString) \ | 85 V(ConsString) \ |
86 V(SlicedString) \ | 86 V(SlicedString) \ |
| 87 V(Symbol) \ |
87 V(Oddball) \ | 88 V(Oddball) \ |
88 V(Code) \ | 89 V(Code) \ |
89 V(Map) \ | 90 V(Map) \ |
90 V(PropertyCell) \ | 91 V(PropertyCell) \ |
91 V(SharedFunctionInfo) \ | 92 V(SharedFunctionInfo) \ |
92 V(JSFunction) \ | 93 V(JSFunction) \ |
93 V(JSWeakMap) \ | 94 V(JSWeakMap) \ |
94 V(JSRegExp) | 95 V(JSRegExp) |
95 | 96 |
96 // For data objects, JS objects and structs along with generic visitor which | 97 // For data objects, JS objects and structs along with generic visitor which |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 | 454 |
454 | 455 |
455 template<typename StaticVisitor> | 456 template<typename StaticVisitor> |
456 VisitorDispatchTable<typename StaticMarkingVisitor<StaticVisitor>::Callback> | 457 VisitorDispatchTable<typename StaticMarkingVisitor<StaticVisitor>::Callback> |
457 StaticMarkingVisitor<StaticVisitor>::table_; | 458 StaticMarkingVisitor<StaticVisitor>::table_; |
458 | 459 |
459 | 460 |
460 } } // namespace v8::internal | 461 } } // namespace v8::internal |
461 | 462 |
462 #endif // V8_OBJECTS_VISITING_H_ | 463 #endif // V8_OBJECTS_VISITING_H_ |
OLD | NEW |