| Index: tests/compiler/dart2js/mirrors/mirrors_test_helper.dart
|
| diff --git a/tests/compiler/dart2js/mirrors/mirrors_test_helper.dart b/tests/compiler/dart2js/mirrors/mirrors_test_helper.dart
|
| index 1f57a031b7d6d8e34b98dad4f094cf4ae7641503..0aa116f492c5bd6f2a739a42c9c8b2e2003b7389 100644
|
| --- a/tests/compiler/dart2js/mirrors/mirrors_test_helper.dart
|
| +++ b/tests/compiler/dart2js/mirrors/mirrors_test_helper.dart
|
| @@ -1,37 +1,37 @@
|
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -import 'dart:io';
|
| -import 'dart:async';
|
| -
|
| -import 'package:compiler/src/mirrors/source_mirrors.dart';
|
| -import 'package:compiler/src/mirrors/analyze.dart' as source_mirrors;
|
| -import 'package:compiler/src/source_file_provider.dart';
|
| -
|
| -TypeMirror createInstantiation(TypeSourceMirror type,
|
| - List<TypeMirror> typeArguments) {
|
| - return type.createInstantiation(typeArguments);
|
| -}
|
| -
|
| -Future<MirrorSystem> analyze(String test) {
|
| - Uri repository = Platform.script.resolve('../../../../');
|
| - Uri testUri = repository.resolve('tests/lib/mirrors/$test');
|
| - return analyzeUri(testUri);
|
| -}
|
| -
|
| -
|
| -Future<MirrorSystem> analyzeUri(Uri testUri) {
|
| - Uri repository = Platform.script.resolve('../../../../');
|
| - Uri libraryRoot = repository.resolve('sdk/');
|
| - Uri packageRoot = Uri.base.resolveUri(
|
| - new Uri.file('${Platform.packageRoot}/'));
|
| - var provider = new CompilerSourceFileProvider();
|
| - var handler = new FormattingDiagnosticHandler(provider);
|
| - return source_mirrors.analyze(
|
| - [testUri],
|
| - libraryRoot,
|
| - packageRoot,
|
| - provider,
|
| - handler);
|
| +// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| +// for details. All rights reserved. Use of this source code is governed by a
|
| +// BSD-style license that can be found in the LICENSE file.
|
| +
|
| +import 'dart:io';
|
| +import 'dart:async';
|
| +
|
| +import 'package:compiler/src/mirrors/source_mirrors.dart';
|
| +import 'package:compiler/src/mirrors/analyze.dart' as source_mirrors;
|
| +import 'package:compiler/src/source_file_provider.dart';
|
| +
|
| +TypeMirror createInstantiation(TypeSourceMirror type,
|
| + List<TypeMirror> typeArguments) {
|
| + return type.createInstantiation(typeArguments);
|
| +}
|
| +
|
| +Future<MirrorSystem> analyze(String test) {
|
| + Uri repository = Platform.script.resolve('../../../../');
|
| + Uri testUri = repository.resolve('tests/lib/mirrors/$test');
|
| + return analyzeUri(testUri);
|
| +}
|
| +
|
| +
|
| +Future<MirrorSystem> analyzeUri(Uri testUri) {
|
| + Uri repository = Platform.script.resolve('../../../../');
|
| + Uri libraryRoot = repository.resolve('sdk/');
|
| + Uri packageRoot = Uri.base.resolveUri(
|
| + new Uri.file('${Platform.packageRoot}/'));
|
| + var provider = new CompilerSourceFileProvider();
|
| + var handler = new FormattingDiagnosticHandler(provider);
|
| + return source_mirrors.analyze(
|
| + [testUri],
|
| + libraryRoot,
|
| + packageRoot,
|
| + provider,
|
| + handler);
|
| }
|
|
|