We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a97dc2 commit 72fdaa5Copy full SHA for 72fdaa5
devtools/server/actors/thread.js
@@ -1141,10 +1141,8 @@ const ThreadActor = ActorClassWithSpec(threadSpec, {
1141
},
1142
1143
onSources: function(request) {
1144
-
1145
1146
for (const source of this.dbg.findSources()) {
1147
- this.sources.createSourceActor(source);
+ this._addSource(source);
1148
}
1149
1150
@@ -1761,7 +1759,6 @@ const ThreadActor = ActorClassWithSpec(threadSpec, {
1761
1759
pauseOnExceptions: this._options.pauseOnExceptions,
1762
1760
ignoreCaughtExceptions: this._options.ignoreCaughtExceptions,
1763
skipBreakpoints: this.skipBreakpoints,
1764
- breakpoints: this.breakpointActorMap.listKeys(),
1765
};
1766
1767
});
0 commit comments