| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |