Skip to content

Commit

Permalink
Merge 57fbb0a
Browse files Browse the repository at this point in the history
  • Loading branch information
akgrant43 committed May 15, 2024
2 parents 5017806 + 57fbb0a commit 900be58
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ BaselineOfGToolkitForPharo9 >> baseline: spec [
with: [ spec repository: 'github://feenkcom/gtoolkit:main/src' ].
spec
baseline: 'GToolkit'
with: [ spec repository: 'github://feenkcom/gtoolkit:main/src' ] ]
with: [ spec repository: 'github://feenkcom/gtoolkit:main/src' ].

spec
package: 'GToolkit-PharoOverrides-Debugger' with: [
spec requires: #('GToolkitPrerequisites' 'GToolkit')] ]
]

{ #category : #accessing }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ BaselineOfGToolkitPrerequisites >> baseline: spec [
spec
package: 'GToolkit-PharoMigrations';
package: 'GToolkit-Pharo9-Deprecations';
package: 'GToolkit-Pharo9-Debugger';
package: 'GToolkit-Pharo9-Subscriptions' with: [
spec requires: #('GToolkit-PharoMigrations')];
package: 'GToolkit-Pharo9-Iceberg' with: [
Expand Down
1 change: 0 additions & 1 deletion src/GToolkit-Pharo9-Debugger/package.st

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
Extension { #name : #BlBlocUIManager }

{ #category : #'*GToolkit-Pharo9-Debugger' }
{ #category : #'*GToolkit-PharoOverrides-Debugger' }
BlBlocUIManager >> handleDebugRequest: aDebugRequest [
<debuggerCompleteToSender>

OupsDebuggerSystem new gtOpenDebuggerOnRequest: aDebugRequest
]

{ #category : #'*GToolkit-Pharo9-Debugger' }
{ #category : #'*GToolkit-PharoOverrides-Debugger' }
BlBlocUIManager >> handleDebugRequest: aDebugRequest fromDebuggerSystem: anOupsDebuggerSystem [
<debuggerCompleteToSender>

anOupsDebuggerSystem gtOpenDebuggerOnRequest: aDebugRequest
]

{ #category : #'*GToolkit-Pharo9-Debugger' }
{ #category : #'*GToolkit-PharoOverrides-Debugger' }
BlBlocUIManager >> handleWarningDebugRequest: aDebugRequest [
<debuggerCompleteToSender>

OupsDebuggerSystem new gtOpenDebuggerOnRequest: aDebugRequest
]

{ #category : #'*GToolkit-Pharo9-Debugger' }
{ #category : #'*GToolkit-PharoOverrides-Debugger' }
BlBlocUIManager >> handleWarningDebugRequest: aDebugRequest fromDebuggerSystem: anOupsDebuggerSystem [
<debuggerCompleteToSender>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #OupsDebuggerSystem }

{ #category : #'*GToolkit-Pharo9-Debugger' }
{ #category : #'*GToolkit-PharoOverrides-Debugger' }
OupsDebuggerSystem >> gtOpenDebuggerOnRequest: aDebugRequest [

"Prepare the opening of a debugger, and delegate the debugger selection and opening to a strategy"
Expand Down Expand Up @@ -35,7 +35,7 @@ OupsDebuggerSystem >> gtOpenDebuggerOnRequest: aDebugRequest [
self suspendDebuggedProcess: aDebugRequest
]

{ #category : #'*GToolkit-Pharo9-Debugger' }
{ #category : #'*GToolkit-PharoOverrides-Debugger' }
OupsDebuggerSystem >> gtSpawnNewUIProcessIfNecessary: aDebugRequest [

"If aDebugRequest is about debugging the UI process, we must create a new UI process to take its place. Because the debugged process will be suspended at some point, and suspending the UI process means freezing the UI of the image"
Expand Down
1 change: 1 addition & 0 deletions src/GToolkit-PharoOverrides-Debugger/package.st
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Package { #name : #'GToolkit-PharoOverrides-Debugger' }

0 comments on commit 900be58

Please sign in to comment.