| OLD | NEW |
| 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 /** | 5 /** |
| 6 * @interface | 6 * @interface |
| 7 */ | 7 */ |
| 8 WebInspector.TextEditorFactory = function() | 8 WebInspector.TextEditorFactory = function() |
| 9 { | 9 { |
| 10 }; | 10 }; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 /** | 81 /** |
| 82 * @typedef {{ | 82 * @typedef {{ |
| 83 * bracketMatchingSetting: (!WebInspector.Setting|undefined), | 83 * bracketMatchingSetting: (!WebInspector.Setting|undefined), |
| 84 * lineNumbers: boolean, | 84 * lineNumbers: boolean, |
| 85 * lineWrapping: boolean, | 85 * lineWrapping: boolean, |
| 86 * mimeType: (string|undefined), | 86 * mimeType: (string|undefined), |
| 87 * autoHeight: (boolean|undefined) | 87 * autoHeight: (boolean|undefined) |
| 88 * }} | 88 * }} |
| 89 **/ | 89 */ |
| 90 WebInspector.TextEditor.Options; | 90 WebInspector.TextEditor.Options; |
| 91 | 91 |
| 92 /** | 92 /** |
| 93 * @typedef {{ | 93 * @typedef {{ |
| 94 * substituteRangeCallback: ((function(number, number):?WebInspector.TextRan
ge)|undefined), | 94 * substituteRangeCallback: ((function(number, number):?WebInspector.TextRan
ge)|undefined), |
| 95 * suggestionsCallback: ((function(!WebInspector.TextRange, !WebInspector.Te
xtRange):?Promise.<!WebInspector.SuggestBox.Suggestions>)|undefined), | 95 * suggestionsCallback: ((function(!WebInspector.TextRange, !WebInspector.Te
xtRange):?Promise.<!WebInspector.SuggestBox.Suggestions>)|undefined), |
| 96 * isWordChar: ((function(string):boolean)|undefined), | 96 * isWordChar: ((function(string):boolean)|undefined), |
| 97 * captureEnter: (boolean|undefined) | 97 * captureEnter: (boolean|undefined) |
| 98 * }} | 98 * }} |
| 99 **/ | 99 */ |
| 100 WebInspector.AutocompleteConfig; | 100 WebInspector.AutocompleteConfig; |
| OLD | NEW |