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

Side by Side Diff: src/visitors.cc

Issue 2801073006: Decouple root visitors from object visitors. (Closed)
Patch Set: rebase Created 3 years, 8 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
« no previous file with comments | « src/visitors.h ('k') | test/cctest/heap/test-heap.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "src/visitors.h"
6
7 namespace v8 {
8 namespace internal {
9
10 #define DECLARE_TAG(ignore1, name, ignore2) name,
11 const char* const
12 VisitorSynchronization::kTags[VisitorSynchronization::kNumberOfSyncTags] = {
13 ROOT_ID_LIST(DECLARE_TAG)};
14 #undef DECLARE_TAG
15
16 #define DECLARE_TAG(ignore1, ignore2, name) name,
17 const char* const VisitorSynchronization::kTagNames
18 [VisitorSynchronization::kNumberOfSyncTags] = {ROOT_ID_LIST(DECLARE_TAG)};
19 #undef DECLARE_TAG
20
21 } // namespace internal
22 } // namespace v8
OLDNEW
« no previous file with comments | « src/visitors.h ('k') | test/cctest/heap/test-heap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698