OLD | NEW |
(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 |
OLD | NEW |