summaryrefslogtreecommitdiff
path: root/deps/v8/src/visitors.cc
blob: 98911f1c28348316ae8c1b4678bde7804b37ae5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/visitors.h"

#include "src/objects/code.h"

namespace v8 {
namespace internal {

#define DECLARE_TAG(ignore1, name, ignore2) name,
const char* const
    VisitorSynchronization::kTags[VisitorSynchronization::kNumberOfSyncTags] = {
        ROOT_ID_LIST(DECLARE_TAG)};
#undef DECLARE_TAG

#define DECLARE_TAG(ignore1, ignore2, name) name,
const char* const VisitorSynchronization::kTagNames
    [VisitorSynchronization::kNumberOfSyncTags] = {ROOT_ID_LIST(DECLARE_TAG)};
#undef DECLARE_TAG

}  // namespace internal
}  // namespace v8