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

Side by Side Diff: pkg/front_end/test/scanner_roundtrip_test.dart

Issue 2695803002: Fix unused imports. (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | 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) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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:front_end/src/fasta/analyzer/token_utils.dart'; 5 import 'package:front_end/src/fasta/analyzer/token_utils.dart';
6 import 'package:front_end/src/fasta/scanner/error_token.dart' as fasta;
7 import 'package:front_end/src/fasta/scanner/keyword.dart' as fasta;
8 import 'package:front_end/src/fasta/scanner/string_scanner.dart' as fasta;
9 import 'package:front_end/src/fasta/scanner/token.dart' as fasta;
10 import 'package:front_end/src/fasta/scanner/token_constants.dart' as fasta;
11 import 'package:front_end/src/scanner/errors.dart'; 6 import 'package:front_end/src/scanner/errors.dart';
12 import 'package:front_end/src/scanner/token.dart'; 7 import 'package:front_end/src/scanner/token.dart';
13 import 'package:test/test.dart'; 8 import 'package:test/test.dart';
14 import 'package:test_reflective_loader/test_reflective_loader.dart'; 9 import 'package:test_reflective_loader/test_reflective_loader.dart';
15 10
16 import 'scanner_test.dart'; 11 import 'scanner_test.dart';
17 12
18 main() { 13 main() {
19 defineReflectiveSuite(() { 14 defineReflectiveSuite(() {
20 defineReflectiveTests(ScannerTest_RoundTrip); 15 defineReflectiveTests(ScannerTest_RoundTrip);
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 super.test_scriptTag_withoutSpace(); 87 super.test_scriptTag_withoutSpace();
93 } 88 }
94 89
95 @override 90 @override
96 @failingTest 91 @failingTest
97 void test_scriptTag_withSpace() { 92 void test_scriptTag_withSpace() {
98 // TODO(paulberry,ahe): Fasta scanner doesn't support script tag 93 // TODO(paulberry,ahe): Fasta scanner doesn't support script tag
99 super.test_scriptTag_withSpace(); 94 super.test_scriptTag_withSpace();
100 } 95 }
101 } 96 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698