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

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

Issue 2331053002: DevTools: Implement the console prompt with CodeMirror (Closed)
Patch Set: Merge with PageUp fix Created 4 years, 3 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 /** 1 /**
2 * @interface 2 * @interface
3 */ 3 */
4 WebInspector.TextEditorFactory = function() 4 WebInspector.TextEditorFactory = function()
5 { 5 {
6 } 6 }
7 7
8 WebInspector.TextEditorFactory.prototype = { 8 WebInspector.TextEditorFactory.prototype = {
9 /** 9 /**
10 * @param {!WebInspector.TextEditor.Options} options 10 * @param {!WebInspector.TextEditor.Options} options
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 configureAutocomplete: function(config) { }, 70 configureAutocomplete: function(config) { },
71 71
72 clearAutocomplete: function() { } 72 clearAutocomplete: function() { }
73 } 73 }
74 74
75 /** 75 /**
76 * @typedef {{ 76 * @typedef {{
77 * bracketMatchingSetting: (!WebInspector.Setting|undefined), 77 * bracketMatchingSetting: (!WebInspector.Setting|undefined),
78 * lineNumbers: boolean, 78 * lineNumbers: boolean,
79 * lineWrapping: boolean, 79 * lineWrapping: boolean,
80 * mimeType: (string|undefined) 80 * mimeType: (string|undefined),
81 * autoHeight: (boolean|undefined)
81 * }} 82 * }}
82 **/ 83 **/
83 WebInspector.TextEditor.Options; 84 WebInspector.TextEditor.Options;
84 85
85 /** 86 /**
86 * @typedef {{ 87 * @typedef {{
87 * substituteRangeCallback: ((function(number, number):?WebInspector.TextRan ge)|undefined), 88 * substituteRangeCallback: ((function(number, number):?WebInspector.TextRan ge)|undefined),
88 * suggestionsCallback: ((function(!WebInspector.TextRange, !WebInspector.Te xtRange):?Promise.<!WebInspector.SuggestBox.Suggestions>)|undefined), 89 * suggestionsCallback: ((function(!WebInspector.TextRange, !WebInspector.Te xtRange):?Promise.<!WebInspector.SuggestBox.Suggestions>)|undefined),
89 * isWordChar: ((function(string):boolean)|undefined) 90 * isWordChar: ((function(string):boolean)|undefined),
91 * captureEnter: (boolean|undefined)
90 * }} 92 * }}
91 **/ 93 **/
92 WebInspector.AutocompleteConfig; 94 WebInspector.AutocompleteConfig;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698