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

Unified Diff: pkg/compiler/lib/src/parser/node_listener.dart

Issue 2710803002: Pass '=' to endNamedMixinApplication(). (Closed)
Patch Set: Update pkg/compiler too. Created 3 years, 10 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
Index: pkg/compiler/lib/src/parser/node_listener.dart
diff --git a/pkg/compiler/lib/src/parser/node_listener.dart b/pkg/compiler/lib/src/parser/node_listener.dart
index f717c7d100e1437c298d6fc449600ea5a52d1d17..8d9694ad9ac49749d6e16721f063c65c52fc2ca9 100644
--- a/pkg/compiler/lib/src/parser/node_listener.dart
+++ b/pkg/compiler/lib/src/parser/node_listener.dart
@@ -136,7 +136,8 @@ class NodeListener extends ElementListener {
@override
void endNamedMixinApplication(
- Token classKeyword, Token implementsKeyword, Token endToken) {
+ Token classKeyword, Token equals, Token implementsKeyword,
+ Token endToken) {
NodeList interfaces = (implementsKeyword != null) ? popNode() : null;
Node mixinApplication = popNode();
NodeList typeParameters = popNode();

Powered by Google App Engine
This is Rietveld 408576698