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

Unified Diff: pkg/front_end/test/scanner_roundtrip_test.dart

Issue 2900303003: delete obsolete scanner roundtrip test (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/front_end/test/token_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/test/scanner_roundtrip_test.dart
diff --git a/pkg/front_end/test/scanner_roundtrip_test.dart b/pkg/front_end/test/scanner_roundtrip_test.dart
deleted file mode 100644
index f8d3bce9edd2b048030b6e035e122040f6190f10..0000000000000000000000000000000000000000
--- a/pkg/front_end/test/scanner_roundtrip_test.dart
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright (c) 2017, 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 'package:analyzer/src/fasta/token_utils.dart';
-import 'package:front_end/src/scanner/errors.dart' as analyzer;
-import 'package:front_end/src/scanner/reader.dart' as analyzer;
-import 'package:front_end/src/scanner/scanner.dart' as analyzer;
-import 'package:front_end/src/scanner/token.dart';
-import 'package:test/test.dart';
-import 'package:test_reflective_loader/test_reflective_loader.dart';
-
-import 'scanner_fasta_test.dart';
-import 'scanner_test.dart';
-
-main() {
- // round trip test removed
-}
-
-class TestScanner extends analyzer.Scanner {
- TestScanner(analyzer.CharacterReader reader) : super.create(reader);
-
- @override
- void reportError(
- analyzer.ScannerErrorCode errorCode, int offset, List<Object> arguments) {
- fail('Unexpected error $errorCode while scanning offset $offset\n'
- ' arguments: $arguments');
- }
-}
« no previous file with comments | « no previous file | pkg/front_end/test/token_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698