blob: c84f54871c9af6fa79e67db74bd9b55640a9e405 [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 TypeArgumentsRepository implements M.TypeArgumentsRepository {
Future<M.TypeArguments> get(M.IsolateRef i, String id) async {
S.Isolate isolate = i as S.Isolate;
assert(i != null);
assert(id != null);
return (await isolate.getObject(id)) as M.TypeArguments;
}
}