| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file | 3 // BSD-style license that can be found in the LICENSE file |
| 4 | 4 |
| 5 part of mocks; | 5 part of mocks; |
| 6 | 6 |
| 7 class VMUpdateEventMock implements M.VMUpdateEvent { |
| 8 final M.VMRef vm; |
| 9 const VMUpdateEventMock({this.vm}); |
| 10 } |
| 11 |
| 7 class IsolateUpdateEventMock implements M.IsolateUpdateEvent { | 12 class IsolateUpdateEventMock implements M.IsolateUpdateEvent { |
| 8 final DateTime timestamp; | 13 final DateTime timestamp; |
| 9 final M.IsolateRef isolate; | 14 final M.IsolateRef isolate; |
| 10 const IsolateUpdateEventMock({this.timestamp, this.isolate}); | 15 const IsolateUpdateEventMock({this.timestamp, this.isolate}); |
| 11 } | 16 } |
| OLD | NEW |