OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 library check_sdk_test; | 5 library check_sdk_test; |
6 | 6 |
7 import 'package:scheduled_test/scheduled_test.dart'; | 7 import 'package:scheduled_test/scheduled_test.dart'; |
8 | 8 |
9 import 'descriptor.dart' as d; | 9 import 'descriptor.dart' as d; |
10 import "test_pub.dart"; | 10 import "test_pub.dart"; |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 """ | 136 """ |
137 Some packages that were installed are not compatible with your SDK v
ersion 0.1.2+3 and may not work: | 137 Some packages that were installed are not compatible with your SDK v
ersion 0.1.2+3 and may not work: |
138 - 'myapp' requires >2.0.0 | 138 - 'myapp' requires >2.0.0 |
139 - 'foo' requires >3.0.0 | 139 - 'foo' requires >3.0.0 |
140 | 140 |
141 You may be able to resolve this by upgrading to the latest Dart SDK | 141 You may be able to resolve this by upgrading to the latest Dart SDK |
142 or adding a version constraint to use an older version of a package. | 142 or adding a version constraint to use an older version of a package. |
143 """); | 143 """); |
144 }); | 144 }); |
145 } | 145 } |
146 } | 146 } |
OLD | NEW |