648f62a170
Change-Id: Ia052b1663252a8786f94577626e631a66d69dff5 Reviewed-on: https://dart-review.googlesource.com/58280 Commit-Queue: Paul Berry <paulberry@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com>
10 lines
333 B
Dart
10 lines
333 B
Dart
// 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 models;
|
|
|
|
abstract class FunctionRepository {
|
|
Future<ServiceFunction> get(IsolateRef isolate, String id);
|
|
}
|