| 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 | |
| 241 _targetDisposed() { } | 239 _targetDisposed() { } |
| 242 | 240 |
| 243 debuggerEnabled() | 241 debuggerEnabled() |
| 244 { | 242 { |
| 245 return true; | 243 return true; |
| 246 } | 244 } |
| 247 | 245 |
| 248 scriptsForSourceURL(url) | 246 scriptsForSourceURL(url) |
| 249 { | 247 { |
| 250 var script = this._scriptForURL(url); | 248 var script = this._scriptForURL(url); |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 } | 568 } |
| 571 | 569 |
| 572 function finish() | 570 function finish() |
| 573 { | 571 { |
| 574 InspectorTest.dumpBreakpointLocations(breakpointManager); | 572 InspectorTest.dumpBreakpointLocations(breakpointManager); |
| 575 next(); | 573 next(); |
| 576 } | 574 } |
| 577 } | 575 } |
| 578 | 576 |
| 579 } | 577 } |
| OLD | NEW |