| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 class Type extends Element { | 5 class Type extends Element { |
| 6 bool isTested = false; | 6 bool isTested = false; |
| 7 bool isChecked = false; | 7 bool isChecked = false; |
| 8 bool isWritten = false; | 8 bool isWritten = false; |
| 9 | 9 |
| 10 /** | 10 /** |
| (...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 | 730 |
| 731 /** Represents a Dart type defined as source code. */ | 731 /** Represents a Dart type defined as source code. */ |
| 732 class DefinedType extends Type { | 732 class DefinedType extends Type { |
| 733 // Not final so that we can fill this in for special types like List or num. | 733 // Not final so that we can fill this in for special types like List or num. |
| 734 Definition definition; | 734 Definition definition; |
| 735 final Library library; | 735 final Library library; |
| 736 final bool isClass; | 736 final bool isClass; |
| 737 | 737 |
| 738 // TODO(vsm): Restore the field once Issue 280 is fixed. | 738 // TODO(vsm): Restore the field once Issue 280 is fixed. |
| 739 // Type parent; | 739 // Type parent; |
error: old chunk mismatch |
None
| OLD | NEW |