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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/TextEditor.js

Issue 2760583002: DevTools: Don't give up autocomplete after a fancy character in a string (Closed)
Patch Set: Always add a test Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 /** 4 /**
5 * @interface 5 * @interface
6 */ 6 */
7 UI.TextEditorFactory = function() {}; 7 UI.TextEditorFactory = function() {};
8 8
9 UI.TextEditorFactory.prototype = { 9 UI.TextEditorFactory.prototype = {
10 /** 10 /**
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 /** 63 /**
64 * @param {function(!KeyboardEvent)} handler 64 * @param {function(!KeyboardEvent)} handler
65 */ 65 */
66 addKeyDownHandler(handler) {}, 66 addKeyDownHandler(handler) {},
67 67
68 /** 68 /**
69 * @param {?UI.AutocompleteConfig} config 69 * @param {?UI.AutocompleteConfig} config
70 */ 70 */
71 configureAutocomplete(config) {}, 71 configureAutocomplete(config) {},
72 72
73 clearAutocomplete() {} 73 clearAutocomplete() {},
74
75 /**
76 * @param {number} lineNumber
77 * @param {number} column
dgozman 2017/03/17 20:58:50 columnNumber
einbinder 2017/03/20 17:50:47 Done.
78 * @return {?{startColumn: number, endColumn: number, type: string}}
79 */
80 tokenAtTextPosition(lineNumber, column) {}
74 }; 81 };
75 82
76 /** 83 /**
77 * @typedef {{ 84 * @typedef {{
78 * bracketMatchingSetting: (!Common.Setting|undefined), 85 * bracketMatchingSetting: (!Common.Setting|undefined),
79 * lineNumbers: boolean, 86 * lineNumbers: boolean,
80 * lineWrapping: boolean, 87 * lineWrapping: boolean,
81 * mimeType: (string|undefined), 88 * mimeType: (string|undefined),
82 * autoHeight: (boolean|undefined), 89 * autoHeight: (boolean|undefined),
83 * padBottom: (boolean|undefined) 90 * padBottom: (boolean|undefined)
84 * }} 91 * }}
85 */ 92 */
86 UI.TextEditor.Options; 93 UI.TextEditor.Options;
87 94
88 /** 95 /**
89 * @typedef {{ 96 * @typedef {{
90 * substituteRangeCallback: ((function(number, number):?Common.TextRange)|un defined), 97 * substituteRangeCallback: ((function(number, number):?Common.TextRange)|un defined),
91 * suggestionsCallback: ((function(!Common.TextRange, !Common.TextRange, boo lean=, string=):?Promise.<!UI.SuggestBox.Suggestions>)|undefined), 98 * suggestionsCallback: ((function(!Common.TextRange, !Common.TextRange, boo lean=):?Promise.<!UI.SuggestBox.Suggestions>)|undefined),
92 * isWordChar: ((function(string):boolean)|undefined), 99 * isWordChar: ((function(string):boolean)|undefined),
93 * captureEnter: (boolean|undefined) 100 * captureEnter: (boolean|undefined)
94 * }} 101 * }}
95 */ 102 */
96 UI.AutocompleteConfig; 103 UI.AutocompleteConfig;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698