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

Unified Diff: compiler/java/com/google/dart/compiler/backend/doc/DartDocumentationGenerator.java

Issue 9270016: Issue 932. Checks for various named arguments cases. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Tweaks for comments, changes in tests. Created 8 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: compiler/java/com/google/dart/compiler/backend/doc/DartDocumentationGenerator.java
diff --git a/compiler/java/com/google/dart/compiler/backend/doc/DartDocumentationGenerator.java b/compiler/java/com/google/dart/compiler/backend/doc/DartDocumentationGenerator.java
index 9eac11724289f85e4adece1e7da34eabf983ff10..15e5339acad6fc651ba259a98e1e64646c86ac65 100644
--- a/compiler/java/com/google/dart/compiler/backend/doc/DartDocumentationGenerator.java
+++ b/compiler/java/com/google/dart/compiler/backend/doc/DartDocumentationGenerator.java
@@ -162,7 +162,7 @@ public class DartDocumentationGenerator extends AbstractBackend {
links.add(linkInfo);
stream.print(linkInfo.anchorReferenceStartTag());
stream.print(name);
- List<? extends Type> typeParameters = classElement.getTypeParameters();
+ List<Type> typeParameters = classElement.getTypeParameters();
if (typeParameters.size() > 0) {
stream.print("&lt;");
boolean first = true;

Powered by Google App Engine
This is Rietveld 408576698