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

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

Issue 2535373003: Resolve type arguments to generic methods. (Closed)
Patch Set: Created 4 years 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/parser.dart
diff --git a/pkg/compiler/lib/src/parser/parser.dart b/pkg/compiler/lib/src/parser/parser.dart
index e39ce38880ec486d5f01855e84ad4b03ef66b33c..7ed43279cbd1588d67ba13766e03f0b1e695ba1e 100644
--- a/pkg/compiler/lib/src/parser/parser.dart
+++ b/pkg/compiler/lib/src/parser/parser.dart
@@ -1357,7 +1357,7 @@ class Parser {
if (isFactoryDeclaration(token)) {
token = parseFactoryMethod(token);
listener.endMember();
- assert (token != null);
+ assert(token != null);
eernst 2016/11/30 10:39:01 I tend to think `assert` is a separate syntactic f
Johnni Winther 2016/11/30 11:51:03 Acknowledged.
return token;
}

Powered by Google App Engine
This is Rietveld 408576698