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

Unified Diff: pkg/dart_parser/lib/src/class_member_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_parser/lib/dart_parser.dart ('k') | pkg/dart_parser/lib/src/parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dart_parser/lib/src/class_member_parser.dart
diff --git a/pkg/dart_parser/lib/src/class_member_parser.dart b/pkg/dart_parser/lib/src/class_member_parser.dart
index 792468bf91d832eed194f354925d423589a883b9..13e1fe4d9a821909540179420776fa41a415264d 100644
--- a/pkg/dart_parser/lib/src/class_member_parser.dart
+++ b/pkg/dart_parser/lib/src/class_member_parser.dart
@@ -17,10 +17,8 @@ import 'parser.dart' show
/// their bodies).
class ClassMemberParser extends Parser {
ClassMemberParser(Listener listener,
- {bool asyncAwaitKeywordsEnabled: false,
- bool enableGenericMethodSyntax: false})
- : super(listener, asyncAwaitKeywordsEnabled: asyncAwaitKeywordsEnabled,
- enableGenericMethodSyntax: enableGenericMethodSyntax);
+ {bool asyncAwaitKeywordsEnabled: false})
+ : super(listener, asyncAwaitKeywordsEnabled: asyncAwaitKeywordsEnabled);
Token parseExpression(Token token) => skipExpression(token);
« no previous file with comments | « pkg/dart_parser/lib/dart_parser.dart ('k') | pkg/dart_parser/lib/src/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698