OLD | NEW |
1 var initialize_BreakpointManagerTest = function() { | 1 var initialize_BreakpointManagerTest = function() { |
2 | 2 |
3 InspectorTest.createWorkspace = function(ignoreEvents) | 3 InspectorTest.createWorkspace = function(ignoreEvents) |
4 { | 4 { |
5 if (InspectorTest.testFileSystemWorkspaceBinding) | 5 if (InspectorTest.testFileSystemWorkspaceBinding) |
6 InspectorTest.testFileSystemWorkspaceBinding.dispose(); | 6 InspectorTest.testFileSystemWorkspaceBinding.dispose(); |
7 Workspace.fileSystemMapping.resetForTesting(); | 7 Workspace.fileSystemMapping.resetForTesting(); |
8 | 8 |
9 InspectorTest.testTargetManager = new SDK.TargetManager(); | 9 InspectorTest.testTargetManager = new SDK.TargetManager(); |
10 InspectorTest.testWorkspace = new Workspace.Workspace(); | 10 InspectorTest.testWorkspace = new Workspace.Workspace(); |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 this._scripts = {}; | 229 this._scripts = {}; |
230 this._breakpoints = {}; | 230 this._breakpoints = {}; |
231 this._debuggerWorkspaceBinding = InspectorTest.testDebuggerWorkspaceBind
ing; | 231 this._debuggerWorkspaceBinding = InspectorTest.testDebuggerWorkspaceBind
ing; |
232 } | 232 } |
233 | 233 |
234 target() | 234 target() |
235 { | 235 { |
236 return this._target; | 236 return this._target; |
237 } | 237 } |
238 | 238 |
| 239 setBeforePausedCallback(callback) { } |
| 240 |
239 _targetDisposed() { } | 241 _targetDisposed() { } |
240 | 242 |
241 debuggerEnabled() | 243 debuggerEnabled() |
242 { | 244 { |
243 return true; | 245 return true; |
244 } | 246 } |
245 | 247 |
246 scriptsForSourceURL(url) | 248 scriptsForSourceURL(url) |
247 { | 249 { |
248 var script = this._scriptForURL(url); | 250 var script = this._scriptForURL(url); |
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
568 } | 570 } |
569 | 571 |
570 function finish() | 572 function finish() |
571 { | 573 { |
572 InspectorTest.dumpBreakpointLocations(breakpointManager); | 574 InspectorTest.dumpBreakpointLocations(breakpointManager); |
573 next(); | 575 next(); |
574 } | 576 } |
575 } | 577 } |
576 | 578 |
577 } | 579 } |
OLD | NEW |