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

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

Issue 931103003: Version 1.9.0-dev.8.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 5 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
« no previous file with comments | « no previous file | dart/pkg/analysis_server/lib/src/domain_completion.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/dart/DartServerProposal.java
===================================================================
--- dart/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/dart/DartServerProposal.java (revision 43805)
+++ dart/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/dart/DartServerProposal.java (working copy)
@@ -253,43 +253,60 @@
if (completion.startsWith("(")) {
completion = completion.substring(1, completion.length() - 1);
}
+ boolean hasArgumentList = completion.endsWith(")");
+ boolean hasArguments = !completion.endsWith("()");
/*
* Insert the suggestion
*/
doc.replace(replacementOffset, replacementLength, completion);
/*
- * If the suggestion has parameters, initiate entering parameters
+ * Check if linked mode for arguments is needed
*/
- if (argumentLengths != null) {
- // Set up linked position groups for the arguments.
- LinkedModeModel model = new LinkedModeModel();
- buildLinkedModeModel(model, doc, replacementOffset);
- model.forceInstall();
-
- LinkedModeUI ui = new EditorLinkedModeUI(model, viewer);
- ui.setExitPolicy(new ExitPolicy(')', doc, viewer));
- ui.setExitPosition(viewer, replacementOffset + completion.length(), 0, Integer.MAX_VALUE);
- ui.setCyclingMode(LinkedModeUI.CYCLE_WHEN_NO_PARENT);
- ui.enter();
+ boolean isTriggerEnter = trigger == '\0' || trigger == '\n';
+ if (hasArgumentList && (isTriggerEnter || trigger == '(')) {
+ // If Enter or '(' (when blind typing), then use linked mode.
+ } else {
+ // Insert the trigger and stop completion.
+ selectionOffset = completion.length();
+ selectionLength = 0;
+ if (!isTriggerEnter) {
+ doc.replace(
+ replacementOffset + selectionOffset,
+ selectionLength,
+ Character.toString(trigger));
+ ++selectionOffset;
+ }
return;
}
/*
- * If completion already includes '()' then don't insert extra '(' or ')'
+ * Done if zero arguments and Enter is the trigger
*/
- if (completion.endsWith(")") && (trigger == '(' || trigger == ')')) {
+ if (!hasArguments && isTriggerEnter) {
return;
}
/*
- * Insert the trigger character typed if it is not enter or null
+ * If the suggestion has an argument list, initiate entering arguments
*/
- if (trigger != '\0' && trigger != '\n') {
- doc.replace(
- replacementOffset + selectionOffset,
- selectionLength,
- Character.toString(trigger));
- ++selectionOffset;
- selectionLength = 0;
- return;
+ if (hasArgumentList) {
+ // Prepare linked mode model
+ LinkedModeModel model = new LinkedModeModel();
+ if (hasArguments) {
+ buildLinkedModeModel_hasArgumentList(model, doc, replacementOffset);
+ } else {
+ // If there are no arguments, we still want to use linked mode to ignore ')'.
+ buildLinkedModeModel_emptyArguments(model, doc, replacementOffset, completion);
+ }
+ model.forceInstall();
+ // Start linked mode UI
+ LinkedModeUI ui = new EditorLinkedModeUI(model, viewer);
+ if (hasArguments) {
+ ui.setExitPolicy(new ExitPolicy(')', doc, viewer));
+ } else {
+ ui.setExitPolicy(new AnyExitPolicy());
+ }
+ ui.setExitPosition(viewer, replacementOffset + completion.length(), 0, Integer.MAX_VALUE);
+ ui.setCyclingMode(LinkedModeUI.CYCLE_WHEN_NO_PARENT);
+ ui.enter();
}
} catch (BadLocationException e) {
DartCore.logInformation("Failed to replace offset:" + replacementOffset + " length:"
@@ -480,21 +497,32 @@
return false;
}
// If the user has entered an upper case char as the first char
- // then filter all lower case first character suggestions.
- if (Character.isUpperCase(textEntered.charAt(0)) && Character.isLowerCase(completion.charAt(0))) {
- return false;
+ // then filter using only camelCaseMatching
+ if (!Character.isUpperCase(textEntered.charAt(0))) {
+ String partialCompletion = completion.substring(0, textEntered.length());
+ if (partialCompletion.equalsIgnoreCase(textEntered)) {
+ return true;
+ }
}
- String partialCompletion = completion.substring(0, textEntered.length());
- if (partialCompletion.equalsIgnoreCase(textEntered)) {
- return true;
- }
char[] pattern = textEntered.toCharArray();
char[] name = completion.toCharArray();
return CharOperation.camelCaseMatch(pattern, 0, pattern.length, name, 0, name.length, false);
}
- protected void buildLinkedModeModel(LinkedModeModel model, IDocument document, int baseOffset)
- throws BadLocationException {
+ protected void buildLinkedModeModel_emptyArguments(LinkedModeModel model, IDocument document,
+ int baseOffset, String completion) throws BadLocationException {
+ LinkedPositionGroup group = new LinkedPositionGroup();
+ LinkedPosition pos = new LinkedPosition(
+ document,
+ baseOffset + completion.length(),
+ 0,
+ LinkedPositionGroup.NO_STOP);
+ group.addPosition(pos);
+ model.addGroup(group);
+ }
+
+ protected void buildLinkedModeModel_hasArgumentList(LinkedModeModel model, IDocument document,
+ int baseOffset) throws BadLocationException {
// TODO(paulberry): consider extending to support optional arguments, as
// FilledArgumentNamesMethodProposal does.
for (int i = 0; i != argumentOffsets.length; i++) {
@@ -676,6 +704,20 @@
}
/**
+ * {@link IExitPolicy} that exists on any character.
+ */
+class AnyExitPolicy implements IExitPolicy {
+ @Override
+ public ExitFlags doExit(LinkedModeModel environment, VerifyEvent event, int offset, int length) {
+ if (event.character == 0) {
+ return null;
+ }
+ boolean doit = event.character != ')';
+ return new ExitFlags(ILinkedModeListener.UPDATE_CARET, doit);
+ }
+}
+
+/**
* Allow the linked mode editor to continue running even when the exit character is typed as part of
* a function argument. Using shift operators in a context that expects balanced angle brackets is
* not legal syntax and will confuse the linked mode editor.
@@ -688,7 +730,7 @@
private int angleBracketCount = 0;
private char lastChar = (char) 0;
- final char exitChar;
+ private final char exitChar;
private final IDocument document;
private final ITextViewer viewer;
« no previous file with comments | « no previous file | dart/pkg/analysis_server/lib/src/domain_completion.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698