| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 1 /// A bit flag used by [LibraryInfo] indicating that a library is used by | 5 /// A bit flag used by [LibraryInfo] indicating that a library is used by |
| 2 /// dart2js. | 6 /// dart2js. |
| 3 /// | 7 /// |
| 4 /// This declaration duplicates the declaration in the SDK's "libraries.dart". | 8 /// This declaration duplicates the declaration in the SDK's "libraries.dart". |
| 5 const int DART2JS_PLATFORM = 1; | 9 const int DART2JS_PLATFORM = 1; |
| 6 | 10 |
| 7 /// A bit flag used by [LibraryInfo] indicating that a library is used by the | 11 /// A bit flag used by [LibraryInfo] indicating that a library is used by the |
| 8 /// VM. | 12 /// VM. |
| 9 /// | 13 /// |
| 10 /// This declaration duplicates the declaration in the SDK's "libraries.dart". | 14 /// This declaration duplicates the declaration in the SDK's "libraries.dart". |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 final int level; | 150 final int level; |
| 147 | 151 |
| 148 final String name; | 152 final String name; |
| 149 | 153 |
| 150 final String description; | 154 final String description; |
| 151 | 155 |
| 152 const Maturity(this.level, this.name, this.description); | 156 const Maturity(this.level, this.name, this.description); |
| 153 | 157 |
| 154 String toString() => "$name: $level\n$description\n"; | 158 String toString() => "$name: $level\n$description\n"; |
| 155 } | 159 } |
| OLD | NEW |