| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 |
| 6 /** | 7 /** |
| 7 * @unrestricted | 8 * @unrestricted |
| 8 */ | 9 */ |
| 9 WebInspector.JavaScriptOutlineDialog = class extends WebInspector.FilteredListWi
dget.Delegate { | 10 WebInspector.JavaScriptOutlineDialog = class extends WebInspector.FilteredListWi
dget.Delegate { |
| 10 /** | 11 /** |
| 11 * @param {!WebInspector.UISourceCode} uiSourceCode | 12 * @param {!WebInspector.UISourceCode} uiSourceCode |
| 12 * @param {function(number, number)} selectItemCallback | 13 * @param {function(number, number)} selectItemCallback |
| 13 */ | 14 */ |
| 14 constructor(uiSourceCode, selectItemCallback) { | 15 constructor(uiSourceCode, selectItemCallback) { |
| 15 super([]); | 16 super([]); |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 */ | 115 */ |
| 115 dispose() { | 116 dispose() { |
| 116 } | 117 } |
| 117 }; | 118 }; |
| 118 | 119 |
| 119 | 120 |
| 120 /** | 121 /** |
| 121 * @typedef {{isLastChunk: boolean, chunk: !Array.<!{selectorText: string, lineN
umber: number, columnNumber: number}>}} | 122 * @typedef {{isLastChunk: boolean, chunk: !Array.<!{selectorText: string, lineN
umber: number, columnNumber: number}>}} |
| 122 */ | 123 */ |
| 123 WebInspector.JavaScriptOutlineDialog.MessageEventData; | 124 WebInspector.JavaScriptOutlineDialog.MessageEventData; |
| OLD | NEW |