blob: 5f8f391d286077426f8e63c1e9133038e19ea533 [file] [log] [blame]
// Copyright (c) 2016, 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
part of repositories;
class ClassRepository extends M.ClassRepository {
Future<M.Class> getObject(M.IsolateRef i) {
final isolate = i as S.Isolate;
assert(isolate != null);
return isolate.getClassHierarchy();
}
Future<M.Class> get(M.IsolateRef i, String id) async {
final isolate = i as S.Isolate;
assert(isolate != null);
return (await isolate.getObject(id)) as S.Class;
}
}