blob: 8a4703bcc1c8091cc440af937c4e8e93724c5e97 [file] [edit]
// 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;
return (await isolate.getObject(id)) as M.Script;
}
}