Skip to content

Commit 1cf3454

Browse files
committed
devtools: make lein check happy again
1 parent 9878879 commit 1cf3454

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

resources/unpacked/devtools/front_end/console/DiracPrompt.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,9 @@ WebInspector.DiracPromptWithHistory.prototype = {
470470

471471
const readyCallback = completionsReadyCallback.bind(this, expression, prefix);
472472

473+
/**
474+
* @this {WebInspector.DiracPromptWithHistory}
475+
*/
473476
const provideCompletionsForNamespace = ([namespaces, namespaceName]) => {
474477
const namespace = namespaces[namespaceName];
475478
if (!namespace) {

resources/unpacked/devtools/front_end/dirac_lazy/dirac_lazy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Object.assign(window.dirac, (function() {
211211
}
212212

213213
WebInspector.debuggerWorkspaceBinding.maybeLoadSourceMap(script);
214-
return ensureSourceMapLoadedAsync(script).then(sourceMap => {
214+
return ensureSourceMapLoadedAsync(script).then(/** @suppressGlobalPropertiesCheck */ sourceMap => {
215215
const scriptUrl = script.contentURL();
216216
let promises = [];
217217
let realNamespace = false;

resources/unpacked/devtools/front_end/externs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ var dirac = {
461461
initConsole: function() {},
462462
initRepl: function() {},
463463
/**
464-
* @param {!WebInspector.Panel} panel
464+
* @param {!Object} panel
465465
*/
466466
notifyPanelSwitch: function(panel) {},
467467
getVersion: function() {},

0 commit comments

Comments
 (0)