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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/InlineFunctionCompletionProposal.java

Issue 69883003: Issue 249. Show documentation for highlighted code completion. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/InlineFunctionCompletionProposal.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/InlineFunctionCompletionProposal.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/InlineFunctionCompletionProposal.java
index d4dc6f56d4620018c77292d0cbba9e8cec515ab7..d15ea563bc69d412780ecae7c148a43b19a98800 100644
--- a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/InlineFunctionCompletionProposal.java
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/completion/InlineFunctionCompletionProposal.java
@@ -83,7 +83,8 @@ public class InlineFunctionCompletionProposal extends DartTypeCompletionProposal
public InlineFunctionCompletionProposal(CompilationUnit cu, char[][] paramNames,
char[][] paramTypes, String typeName, int start, int length, int relevance) {
- super("", cu, start, length, null, getDisplayName(paramNames, paramTypes, typeName), relevance); //$NON-NLS-1$
+ super(
+ "", cu, start, length, null, getDisplayName(paramNames, paramTypes, typeName), relevance, null); //$NON-NLS-1$
this.typeName = typeName;
this.paramNames = paramNames;
this.paramTypes = paramTypes;

Powered by Google App Engine
This is Rietveld 408576698