blob: f9ae6b14b7b9084665430fde4fad886dcc4746e8 [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 BreakpointRepository extends M.BreakpointRepository {
Future addOnActivation(M.IsolateRef i, M.Instance closure) async {
S.Isolate isolate = i as S.Isolate;
await isolate.addBreakOnActivation(closure as S.Instance);
}
Future remove(M.IsolateRef i, M.Breakpoint breakpoint) async {
S.Isolate isolate = i as S.Isolate;
await isolate.removeBreakpoint(breakpoint as S.Breakpoint);
}
}