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

Side by Side Diff: pkg/front_end/lib/src/fasta/fasta_codes.dart

Issue 2890523002: merge fasta.Token into analyzer.Token (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 unified diff | Download patch
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 library fasta.codes; 5 library fasta.codes;
6 6
7 import 'package:front_end/src/fasta/scanner/token.dart' show Token; 7 import 'package:front_end/src/scanner/token.dart' show Token;
8 8
9 part 'fasta_codes_generated.dart'; 9 part 'fasta_codes_generated.dart';
10 10
11 class FastaCode<T> { 11 class FastaCode<T> {
12 final String template; 12 final String template;
13 13
14 final String tip; 14 final String tip;
15 15
16 final String analyzerCode; 16 final String analyzerCode;
17 17
(...skipping 18 matching lines...) Expand all
36 36
37 final String tip; 37 final String tip;
38 38
39 final FastaCode code; 39 final FastaCode code;
40 40
41 final Map<String, dynamic> arguments; 41 final Map<String, dynamic> arguments;
42 42
43 const FastaMessage(this.uri, this.charOffset, this.code, 43 const FastaMessage(this.uri, this.charOffset, this.code,
44 {this.message, this.tip, this.arguments}); 44 {this.message, this.tip, this.arguments});
45 } 45 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/resolution/enum_creator.dart ('k') | pkg/front_end/lib/src/fasta/kernel/body_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698