| OLD | NEW |
| 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 Loading... |
| 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; |
| OLD | NEW |