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

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

Issue 2792053002: Scan generic method comments with Fasta. (Closed)
Patch Set: 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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.scanner.token_constants; 5 library fasta.scanner.token_constants;
6 6
7 import 'characters.dart'; 7 import 'characters.dart';
8 8
9 const int EOF_TOKEN = 0; 9 const int EOF_TOKEN = 0;
10 10
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 const int TILDE_SLASH_EQ_TOKEN = MINUS_EQ_TOKEN + 1; 75 const int TILDE_SLASH_EQ_TOKEN = MINUS_EQ_TOKEN + 1;
76 const int TILDE_SLASH_TOKEN = TILDE_SLASH_EQ_TOKEN + 1; 76 const int TILDE_SLASH_TOKEN = TILDE_SLASH_EQ_TOKEN + 1;
77 const int PERCENT_EQ_TOKEN = TILDE_SLASH_TOKEN + 1; 77 const int PERCENT_EQ_TOKEN = TILDE_SLASH_TOKEN + 1;
78 const int GT_GT_TOKEN = PERCENT_EQ_TOKEN + 1; 78 const int GT_GT_TOKEN = PERCENT_EQ_TOKEN + 1;
79 const int CARET_EQ_TOKEN = GT_GT_TOKEN + 1; 79 const int CARET_EQ_TOKEN = GT_GT_TOKEN + 1;
80 const int COMMENT_TOKEN = CARET_EQ_TOKEN + 1; 80 const int COMMENT_TOKEN = CARET_EQ_TOKEN + 1;
81 const int STRING_INTERPOLATION_IDENTIFIER_TOKEN = COMMENT_TOKEN + 1; 81 const int STRING_INTERPOLATION_IDENTIFIER_TOKEN = COMMENT_TOKEN + 1;
82 const int QUESTION_PERIOD_TOKEN = STRING_INTERPOLATION_IDENTIFIER_TOKEN + 1; 82 const int QUESTION_PERIOD_TOKEN = STRING_INTERPOLATION_IDENTIFIER_TOKEN + 1;
83 const int QUESTION_QUESTION_TOKEN = QUESTION_PERIOD_TOKEN + 1; 83 const int QUESTION_QUESTION_TOKEN = QUESTION_PERIOD_TOKEN + 1;
84 const int QUESTION_QUESTION_EQ_TOKEN = QUESTION_QUESTION_TOKEN + 1; 84 const int QUESTION_QUESTION_EQ_TOKEN = QUESTION_QUESTION_TOKEN + 1;
85 const int GENERIC_METHOD_TYPE_ASSIGN_TOKEN = QUESTION_QUESTION_EQ_TOKEN + 1;
86 const int GENERIC_METHOD_TYPE_LIST_TOKEN = GENERIC_METHOD_TYPE_ASSIGN_TOKEN + 1;
OLDNEW
« no previous file with comments | « pkg/front_end/lib/src/fasta/scanner/token.dart ('k') | pkg/front_end/lib/src/scanner/token.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698