| Index: third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js b/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| index b075cae9bb149ec987fd3545a278c5b919706d72..1c248790657d5247463b1e1238fe074a3ae6e288 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/console/ConsolePrompt.js
|
| @@ -256,7 +256,7 @@ WebInspector.ConsolePrompt = class extends WebInspector.Widget {
|
| var prefix = this._editor.text(prefixRange);
|
| var before = this._editor.text(new WebInspector.TextRange(0, 0, prefixRange.startLine, prefixRange.startColumn));
|
| var historyWords = this._historyCompletions(prefix);
|
| - return WebInspector.ExecutionContextSelector.completionsForTextInCurrentContext(before, prefix, true /* force */)
|
| + return WebInspector.JavaScriptAutocomplete.completionsForTextInCurrentContext(before, prefix, true /* force */)
|
| .then(innerWordsWithPrefix);
|
|
|
| /**
|
|
|