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

Unified Diff: pkg/fasta/lib/src/source/diet_parser.dart

Issue 2642903003: Update parser and scanner. (Closed)
Patch Set: Created 3 years, 11 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 | « pkg/dart_scanner/lib/src/keyword.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/fasta/lib/src/source/diet_parser.dart
diff --git a/pkg/fasta/lib/src/source/diet_parser.dart b/pkg/fasta/lib/src/source/diet_parser.dart
index 1811f859f1e8f60b2c7f996b130e28be8d59b0d2..028e7cd2bc3fc73371250440b9b5340452c96b98 100644
--- a/pkg/fasta/lib/src/source/diet_parser.dart
+++ b/pkg/fasta/lib/src/source/diet_parser.dart
@@ -22,11 +22,8 @@ import 'package:dart_parser/src/parser.dart' show
// TODO(ahe): Move this to parser package.
class DietParser extends ClassMemberParser {
- DietParser(Listener listener,
- {bool asyncAwaitKeywordsEnabled: false,
- bool enableGenericMethodSyntax: false})
- : super(listener, asyncAwaitKeywordsEnabled: asyncAwaitKeywordsEnabled,
- enableGenericMethodSyntax: enableGenericMethodSyntax);
+ DietParser(Listener listener, {bool asyncAwaitKeywordsEnabled: false})
+ : super(listener, asyncAwaitKeywordsEnabled: asyncAwaitKeywordsEnabled);
Token parseFormalParameters(Token token) => skipFormals(token);
« no previous file with comments | « pkg/dart_scanner/lib/src/keyword.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698