| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 'package:async_helper/async_helper.dart'; | 6 import 'package:async_helper/async_helper.dart'; |
| 7 import 'package:expect/expect.dart'; | 7 import 'package:expect/expect.dart'; |
| 8 import 'sourcemap_helper.dart'; | 8 import 'sourcemap_helper.dart'; |
| 9 | 9 |
| 10 main(List<String> arguments) { | 10 main(List<String> arguments) { |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 class TestResult { | 110 class TestResult { |
| 111 final String config; | 111 final String config; |
| 112 final String file; | 112 final String file; |
| 113 final SourceMapProcessor processor; | 113 final SourceMapProcessor processor; |
| 114 List<SourceMapInfo> userInfoList = <SourceMapInfo>[]; | 114 List<SourceMapInfo> userInfoList = <SourceMapInfo>[]; |
| 115 Map<SourceMapInfo, Iterable<CodePoint>> failureMap = | 115 Map<SourceMapInfo, Iterable<CodePoint>> failureMap = |
| 116 <SourceMapInfo, Iterable<CodePoint>>{}; | 116 <SourceMapInfo, Iterable<CodePoint>>{}; |
| 117 | 117 |
| 118 TestResult(this.config, this.file, this.processor); | 118 TestResult(this.config, this.file, this.processor); |
| 119 } | 119 } |
| OLD | NEW |