| Index: runtime/observatory/lib/src/models/objects/breakpoint.dart
|
| diff --git a/runtime/observatory/lib/src/models/objects/isolate.dart b/runtime/observatory/lib/src/models/objects/breakpoint.dart
|
| similarity index 56%
|
| copy from runtime/observatory/lib/src/models/objects/isolate.dart
|
| copy to runtime/observatory/lib/src/models/objects/breakpoint.dart
|
| index 007a6f493019a7e4400edb65a4a6cb4e2fd0d3e6..e5e9324aad90deef226b54bfe8369f1027641021 100644
|
| --- a/runtime/observatory/lib/src/models/objects/isolate.dart
|
| +++ b/runtime/observatory/lib/src/models/objects/breakpoint.dart
|
| @@ -4,13 +4,10 @@
|
|
|
| part of models;
|
|
|
| -abstract class IsolateRef {
|
| - String get id;
|
| +abstract class Breakpoint extends Object {
|
| + /// A number identifying this breakpoint to the user.
|
| int get number;
|
| - String get name;
|
| -}
|
|
|
| -abstract class Isolate extends IsolateRef {
|
| - DateTime get startTime;
|
| - bool get runnable;
|
| + /// Has this breakpoint been assigned to a specific program location?
|
| + bool get resolved;
|
| }
|
|
|