| 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"; | 5 import "package:expect/expect.dart"; |
| 6 import "package:async_helper/async_helper.dart"; |
| 6 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart'
; | 7 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors.dart'
; |
| 7 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util.
dart'; | 8 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/mirrors_util.
dart'; |
| 8 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirro
r.dart'; | 9 import '../../../sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirro
r.dart'; |
| 9 import '../../../sdk/lib/_internal/compiler/implementation/filenames.dart' | 10 import '../../../sdk/lib/_internal/compiler/implementation/filenames.dart' |
| 10 show currentDirectory, nativeToUriPath; | 11 show currentDirectory, nativeToUriPath; |
| 11 import '../../../sdk/lib/_internal/compiler/implementation/source_file_provider.
dart'; | 12 import '../../../sdk/lib/_internal/compiler/implementation/source_file_provider.
dart'; |
| 12 | 13 |
| 13 import 'dart:io'; | 14 import 'dart:io'; |
| 14 | 15 |
| 15 final Uri DART_MIRRORS_URI = new Uri(scheme: 'dart', path: 'mirrors'); | 16 final Uri DART_MIRRORS_URI = new Uri(scheme: 'dart', path: 'mirrors'); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 41 } | 42 } |
| 42 | 43 |
| 43 main() { | 44 main() { |
| 44 Uri scriptUri = | 45 Uri scriptUri = |
| 45 currentDirectory.resolve(nativeToUriPath(Platform.script)); | 46 currentDirectory.resolve(nativeToUriPath(Platform.script)); |
| 46 Uri libUri = scriptUri.resolve('../../../sdk/'); | 47 Uri libUri = scriptUri.resolve('../../../sdk/'); |
| 47 Uri inputUri = scriptUri.resolve('mirrors_helper.dart'); | 48 Uri inputUri = scriptUri.resolve('mirrors_helper.dart'); |
| 48 var provider = new SourceFileProvider(); | 49 var provider = new SourceFileProvider(); |
| 49 var diagnosticHandler = | 50 var diagnosticHandler = |
| 50 new FormattingDiagnosticHandler(provider).diagnosticHandler; | 51 new FormattingDiagnosticHandler(provider).diagnosticHandler; |
| 52 asyncStart(); |
| 51 var result = analyze([inputUri], libUri, null, | 53 var result = analyze([inputUri], libUri, null, |
| 52 provider.readStringFromUri, diagnosticHandler, | 54 provider.readStringFromUri, diagnosticHandler, |
| 53 <String>['--preserve-comments']); | 55 <String>['--preserve-comments']); |
| 54 result.then((MirrorSystem mirrors) { | 56 result.then((MirrorSystem mirrors) { |
| 55 test(mirrors); | 57 test(mirrors); |
| 56 }); | 58 }).whenComplete(() => asyncEnd()); |
| 57 } | 59 } |
| 58 | 60 |
| 59 void test(MirrorSystem mirrors) { | 61 void test(MirrorSystem mirrors) { |
| 60 Expect.isNotNull(mirrors, "No mirror system returned from compilation"); | 62 Expect.isNotNull(mirrors, "No mirror system returned from compilation"); |
| 61 | 63 |
| 62 var libraries = mirrors.libraries; | 64 var libraries = mirrors.libraries; |
| 63 Expect.isNotNull(libraries, "No libraries map returned"); | 65 Expect.isNotNull(libraries, "No libraries map returned"); |
| 64 Expect.isFalse(libraries.isEmpty, "Empty libraries map returned"); | 66 Expect.isFalse(libraries.isEmpty, "Empty libraries map returned"); |
| 65 | 67 |
| 66 var helperLibrary = findMirror(libraries.values, "mirrors_helper"); | 68 var helperLibrary = findMirror(libraries.values, "mirrors_helper"); |
| (...skipping 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1024 Expect.isTrue(privateFactoryConstructor.isPrivate); | 1026 Expect.isTrue(privateFactoryConstructor.isPrivate); |
| 1025 Expect.isFalse(privateFactoryConstructor.isConstConstructor); | 1027 Expect.isFalse(privateFactoryConstructor.isConstConstructor); |
| 1026 Expect.isFalse(privateFactoryConstructor.isRedirectingConstructor); | 1028 Expect.isFalse(privateFactoryConstructor.isRedirectingConstructor); |
| 1027 Expect.isFalse(privateFactoryConstructor.isGenerativeConstructor); | 1029 Expect.isFalse(privateFactoryConstructor.isGenerativeConstructor); |
| 1028 Expect.isTrue(privateFactoryConstructor.isFactoryConstructor); | 1030 Expect.isTrue(privateFactoryConstructor.isFactoryConstructor); |
| 1029 | 1031 |
| 1030 var metadata = privateClass.metadata; | 1032 var metadata = privateClass.metadata; |
| 1031 Expect.isNotNull(metadata); | 1033 Expect.isNotNull(metadata); |
| 1032 Expect.equals(0, metadata.length); | 1034 Expect.equals(0, metadata.length); |
| 1033 } | 1035 } |
| OLD | NEW |