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

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

Issue 2644533002: Mostly use entities in use.dart (Closed)
Patch Set: Fixes 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
Index: pkg/compiler/lib/src/parser/element_listener.dart
diff --git a/pkg/compiler/lib/src/parser/element_listener.dart b/pkg/compiler/lib/src/parser/element_listener.dart
index 1c031aaec3e88b7b03aa53ab1314af2a84e0b0db..e8b3bdf961846734f5ec7fbf25a8c17f8987cbe0 100644
--- a/pkg/compiler/lib/src/parser/element_listener.dart
+++ b/pkg/compiler/lib/src/parser/element_listener.dart
@@ -267,8 +267,8 @@ class ElementListener extends Listener {
name = popNode();
popNode(); // returnType
} else {
- popNode(); // Function type.
- popNode(); // TODO(karlklose): do not throw away typeVariables.
+ popNode(); // Function type.
+ popNode(); // TODO(karlklose): do not throw away typeVariables.
name = popNode();
}
pushElement(new PartialTypedefElement(
@@ -406,8 +406,8 @@ class ElementListener extends Listener {
}
void endFunctionType(Token functionToken, Token endToken) {
- popNode(); // Type parameters.
- popNode(); // Return type.
+ popNode(); // Type parameters.
+ popNode(); // Return type.
pushNode(null);
}

Powered by Google App Engine
This is Rietveld 408576698