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

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

Issue 2450663004: DevTools: do not allow using 'this' before call into super. (Closed)
Patch Set: rebaselined Created 4 years, 1 month 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 /** 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
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;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698