blob: e0fea2d2c409967d83d5b1c60605b315f13f3140 [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 ScriptRepository implements M.ScriptRepository {
Future<M.Script> 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.Script;
}
}