2020-01-31 12:56:31 +00:00
|
|
|
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
|
|
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "vm/visitor.h"
|
|
|
|
|
|
|
|
#include "vm/isolate.h"
|
|
|
|
|
|
|
|
namespace dart {
|
|
|
|
|
2020-02-20 21:08:35 +00:00
|
|
|
ObjectPointerVisitor::ObjectPointerVisitor(IsolateGroup* isolate_group)
|
|
|
|
: isolate_group_(isolate_group),
|
2020-01-31 12:56:31 +00:00
|
|
|
gc_root_type_("unknown"),
|
2020-04-17 03:02:27 +00:00
|
|
|
shared_class_table_(isolate_group->shared_class_table()) {}
|
2020-01-31 12:56:31 +00:00
|
|
|
|
|
|
|
} // namespace dart
|