1// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5#include "vm/visitor.h"
6
7#include "vm/isolate.h"
8
9namespace dart {
10
11ObjectPointerVisitor::ObjectPointerVisitor(IsolateGroup* isolate_group)
12 : isolate_group_(isolate_group),
13 gc_root_type_("unknown"),
14 shared_class_table_(isolate_group->shared_class_table()) {}
15
16} // namespace dart
17