Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/objects-visiting.h

Issue 12459026: ES6 symbols: implement name property (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/objects-printer.cc ('k') | src/objects-visiting.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/objects-printer.cc ('k') | src/objects-visiting.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698