| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 observatory; | 5 part of observatory; |
| 6 | 6 |
| 7 /// State for a running isolate. | 7 /// State for a running isolate. |
| 8 class Isolate { | 8 class Isolate { |
| 9 final int id; | 9 final int id; |
| 10 final String name; | 10 final String name; |
| 11 | 11 |
| 12 Isolate(this.id, this.name); | 12 Isolate(this.id, this.name); |
| 13 | 13 |
| 14 String toString() => '$id $name'; | 14 String toString() => '$id $name'; |
| 15 } | 15 } |
| OLD | NEW |