585eb7f507
- Setting the `disableBreakpoints` parameter to true will result in any breakpoints hit during execution resulting from an evaluate or invoke call to be ignored. - Default behavior is the same (break on breakpoints). - Updated Observatory eval box to disable breakpoints. - Added tests Change-Id: Ibf40f8a8de018718435118e13cc2e969f8ed7944 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/95320 Commit-Queue: Ben Konyi <bkonyi@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com> Reviewed-by: Jacob Richman <jacobr@google.com>
12 lines
402 B
Dart
12 lines
402 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 EvalRepository {
|
|
Future<ObjectRef> evaluate(
|
|
IsolateRef isolate, ObjectRef context, String expression,
|
|
{bool disableBreakpoints: false});
|
|
}
|