| 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 import "package:expect/expect.dart"; | |
| 6 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart'
; | 5 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart'
; |
| 7 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util.
dart'; | 6 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util.
dart'; |
| 8 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirro
r.dart'; | 7 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirro
r.dart'; |
| 9 | 8 |
| 10 import 'dart:io'; | 9 import 'dart:io'; |
| 11 | 10 |
| 12 int count(Iterable iterable) { | 11 int count(Iterable iterable) { |
| 13 var count = 0; | 12 var count = 0; |
| 14 for (var element in iterable) { | 13 for (var element in iterable) { |
| 15 count++; | 14 count++; |
| (...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 Expect.isTrue(privateFactoryConstructor.isPrivate); | 1046 Expect.isTrue(privateFactoryConstructor.isPrivate); |
| 1048 Expect.isFalse(privateFactoryConstructor.isConstConstructor); | 1047 Expect.isFalse(privateFactoryConstructor.isConstConstructor); |
| 1049 Expect.isFalse(privateFactoryConstructor.isRedirectingConstructor); | 1048 Expect.isFalse(privateFactoryConstructor.isRedirectingConstructor); |
| 1050 Expect.isFalse(privateFactoryConstructor.isGenerativeConstructor); | 1049 Expect.isFalse(privateFactoryConstructor.isGenerativeConstructor); |
| 1051 Expect.isTrue(privateFactoryConstructor.isFactoryConstructor); | 1050 Expect.isTrue(privateFactoryConstructor.isFactoryConstructor); |
| 1052 | 1051 |
| 1053 var metadata = privateClass.metadata; | 1052 var metadata = privateClass.metadata; |
| 1054 Expect.isNotNull(metadata); | 1053 Expect.isNotNull(metadata); |
| 1055 Expect.equals(0, metadata.length); | 1054 Expect.equals(0, metadata.length); |
| 1056 } | 1055 } |
| OLD | NEW |