Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(431)

Side by Side Diff: tests/compiler/dart2js/sourcemaps/source_mapping_tester.dart

Issue 1252463003: Split source_mapping_test pr. test file. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/compiler/dart2js/sourcemaps/source_mapping_test_viewer.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/sourcemaps/source_mapping_test_viewer.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698