| Index: third_party/WebKit/Source/devtools/front_end/source_frame/UISourceCodeFrame.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/source_frame/UISourceCodeFrame.js b/third_party/WebKit/Source/devtools/front_end/source_frame/UISourceCodeFrame.js
|
| index c9f57c925e5bd3f8db65e0bfeb759582121ae54e..da0635bdef429c3f113267032281cc5083bbf68d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/source_frame/UISourceCodeFrame.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/source_frame/UISourceCodeFrame.js
|
| @@ -175,12 +175,15 @@ SourceFrame.UISourceCodeFrame = class extends SourceFrame.SourceFrame {
|
| }
|
|
|
| /**
|
| - * @return {!Array<!Workspace.UISourceCode.Message>}
|
| + * @return {!Set<!Workspace.UISourceCode.Message>}
|
| */
|
| _allMessages() {
|
| - return this._persistenceBinding ?
|
| - this._persistenceBinding.network.messages().concat(this._persistenceBinding.fileSystem.messages()) :
|
| - this._uiSourceCode.messages();
|
| + if (this._persistenceBinding) {
|
| + var combinedSet = this._persistenceBinding.network.messages();
|
| + combinedSet.addAll(this._persistenceBinding.fileSystem.messages());
|
| + return combinedSet;
|
| + }
|
| + return this._uiSourceCode.messages();
|
| }
|
|
|
| /**
|
|
|