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

Side by Side Diff: pkg/front_end/test/fasta/scanner/scanner_suite.dart

Issue 2833073002: Stoppp using trippple consonants (Closed)
Patch Set: More spolling Created 3 years, 8 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
OLDNEW
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 import 'package:testing/testing.dart'; 5 import 'package:testing/testing.dart';
6 6
7 import 'package:front_end/src/fasta/testing/scanner_chain.dart'; 7 import 'package:front_end/src/fasta/testing/scanner_chain.dart';
8 8
9 Future<ChainContext> createContext( 9 Future<ChainContext> createContext(
10 Chain suite, Map<String, String> enviroment) async { 10 Chain suite, Map<String, String> environment) async {
11 return new ScannerContext(); 11 return new ScannerContext();
12 } 12 }
13 13
14 class ScannerContext extends ChainContext { 14 class ScannerContext extends ChainContext {
15 final List<Step> steps = const <Step>[ 15 final List<Step> steps = const <Step>[
16 const Read(), 16 const Read(),
17 const Scan(), 17 const Scan(),
18 ]; 18 ];
19 } 19 }
20 20
21 main(List<String> arguments) => 21 main(List<String> arguments) =>
22 runMe(arguments, createContext, "../testing.json"); 22 runMe(arguments, createContext, "../testing.json");
OLDNEW
« no previous file with comments | « pkg/front_end/test/fasta/parser/parser_suite.dart ('k') | pkg/front_end/testcases/DeltaBlue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698