| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'dart:io'; | 6 import 'dart:io'; |
| 7 | 7 |
| 8 import 'package:async_helper/async_helper.dart'; | 8 import 'package:async_helper/async_helper.dart'; |
| 9 import 'package:compiler/src/dart2js.dart' as entry; | 9 import 'package:compiler/src/dart2js.dart' as entry; |
| 10 import 'package:compiler/src/apiimpl.dart'; | 10 import 'package:compiler/src/apiimpl.dart'; |
| 11 import 'package:compiler/compiler_new.dart'; | 11 import 'package:compiler/compiler_new.dart'; |
| 12 | 12 |
| 13 import 'source_map_validator_helper.dart'; | 13 import 'source_map_validator_helper.dart'; |
| 14 | 14 |
| 15 void main() { | 15 void main() { |
| 16 asyncTest(() => createTempDir().then((Directory tmpDir) { | 16 asyncTest(() => createTempDir().then((Directory tmpDir) { |
| 17 String file = | 17 String file = |
| 18 'tests/compiler/dart2js/source_map_deferred_validator_test_file.dart'; | 18 'tests/compiler/dart2js/source_map_deferred_validator_test_file.dart
'; |
| 19 print("Compiling $file"); | 19 print("Compiling $file"); |
| 20 Future result = entry.internalMain( | 20 Future result = entry.internalMain( |
| 21 [file, | 21 [file, '-o${tmpDir.path}/out.js', '--library-root=sdk']); |
| 22 '-o${tmpDir.path}/out.js', | 22 return result.then((CompilationResult result) { |
| 23 '--library-root=sdk']); | 23 CompilerImpl compiler = result.compiler; |
| 24 return result.then((CompilationResult result) { | 24 Uri mainUri = new Uri.file('${tmpDir.path}/out.js', |
| 25 CompilerImpl compiler = result.compiler; | 25 windows: Platform.isWindows); |
| 26 Uri mainUri = new Uri.file('${tmpDir.path}/out.js', | 26 Uri deferredUri = new Uri.file('${tmpDir.path}/out.js_1.part.js', |
| 27 windows: Platform.isWindows); | 27 windows: Platform.isWindows); |
| 28 Uri deferredUri = new Uri.file('${tmpDir.path}/out.js_1.part.js', | 28 validateSourceMap(mainUri, |
| 29 windows: Platform.isWindows); | 29 mainUri: Uri.base.resolve(file), |
| 30 validateSourceMap(mainUri, | 30 mainPosition: const Position(7, 1), |
| 31 mainUri: Uri.base.resolve(file), | 31 compiler: compiler); |
| 32 mainPosition: const Position(7, 1), | 32 validateSourceMap(deferredUri, compiler: compiler); |
| 33 compiler: compiler); | |
| 34 validateSourceMap(deferredUri, | |
| 35 compiler: compiler); | |
| 36 | 33 |
| 37 print("Deleting '${tmpDir.path}'."); | 34 print("Deleting '${tmpDir.path}'."); |
| 38 tmpDir.deleteSync(recursive: true); | 35 tmpDir.deleteSync(recursive: true); |
| 39 }); | 36 }); |
| 40 })); | 37 })); |
| 41 } | 38 } |
| OLD | NEW |