Skip to content

Commit e7920ff

Browse files
committed
Merge a585f85
2 parents 9fa63fc + a585f85 commit e7920ff

File tree

90 files changed

+1384
-584
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+1384
-584
lines changed

.github/workflows/testPR.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,16 @@ jobs:
2727
smalltalk-image: ${{ matrix.smalltalk }}
2828
- run: smalltalkci -s ${{ matrix.smalltalk }}
2929
shell: bash
30-
timeout-minutes: 15
30+
timeout-minutes: 15
31+
32+
# Auto Reneraku
33+
- name: Generate a token
34+
id: generate-token
35+
uses: actions/create-github-app-token@v1
36+
with:
37+
app-id: ${{ secrets.AUTO_RENERAKU_APP_ID }}
38+
private-key: ${{ secrets.AUTO_RENERAKU_PRIVATE_KEY }}
39+
- name: AutoReneraku
40+
uses: badetitou/AutoReneraku@main
41+
with:
42+
pat: ${{ steps.generate-token.outputs.token }}

src/PharoDAP/Array.extension.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Extension { #name : #Array }
1+
Extension { #name : 'Array' }
22

3-
{ #category : #'*PharoDAP' }
3+
{ #category : '*PharoDAP' }
44
Array >> asDAPJSON [
55
^ self collect: #asDAPJSON
66
]

src/PharoDAP/Boolean.extension.st

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Extension { #name : #Boolean }
1+
Extension { #name : 'Boolean' }
22

3-
{ #category : #'*PharoDAP' }
3+
{ #category : '*PharoDAP' }
44
Boolean >> asDAPJSON [
55
^ self
66
]

src/PharoDAP/CommandLineDapUIManager.class.st

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Class {
2-
#name : #CommandLineDapUIManager,
3-
#superclass : #NonInteractiveUIManager,
4-
#category : #'PharoDAP-UIManager'
2+
#name : 'CommandLineDapUIManager',
3+
#superclass : 'NonInteractiveUIManager',
4+
#category : 'PharoDAP-UIManager',
5+
#package : 'PharoDAP',
6+
#tag : 'UIManager'
57
}
68

7-
{ #category : #debug }
9+
{ #category : 'debug' }
810
CommandLineDapUIManager >> debugProcess: process context: context label: title fullView: bool notification: notificationString [
911

1012
(OupsDebugRequest newForContext: context)
@@ -13,7 +15,7 @@ CommandLineDapUIManager >> debugProcess: process context: context label: title f
1315
submit
1416
]
1517

16-
{ #category : #'handle debug requests' }
18+
{ #category : 'handle debug requests' }
1719
CommandLineDapUIManager >> handleDebugRequest: aDebugRequest [
1820
| debuggerOpeningStrategy oupsSystem |
1921

@@ -26,20 +28,20 @@ CommandLineDapUIManager >> handleDebugRequest: aDebugRequest [
2628
oupsSystem suspendDebuggedProcess: aDebugRequest
2729
]
2830

29-
{ #category : #debug }
31+
{ #category : 'debug' }
3032
CommandLineDapUIManager >> handleError: anError log: shouldLog [
3133

3234
self handleDebugRequest: (OupsDebugRequest newForException: anError)
3335

3436
]
3537

36-
{ #category : #'handle debug requests' }
38+
{ #category : 'handle debug requests' }
3739
CommandLineDapUIManager >> handleWarningDebugRequest: aWarningDebugRequest [
3840

3941
self handleDebugRequest: aWarningDebugRequest
4042
]
4143

42-
{ #category : #'ui requests' }
44+
{ #category : 'ui requests' }
4345
CommandLineDapUIManager >> inform: aString [
4446
| ws |
4547
ws := (FileLocator home / 'dap_inform') ensureCreateFile writeStream.
@@ -48,7 +50,7 @@ CommandLineDapUIManager >> inform: aString [
4850

4951
]
5052

51-
{ #category : #'default actions' }
53+
{ #category : 'default actions' }
5254
CommandLineDapUIManager >> unhandledErrorDefaultAction: anException [
5355

5456
anException debug

src/PharoDAP/DAPAttachEvent.class.st

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Class {
2-
#name : #DAPAttachEvent,
3-
#superclass : #DAPEvent,
4-
#category : #'PharoDAP-Structure'
2+
#name : 'DAPAttachEvent',
3+
#superclass : 'DAPEvent',
4+
#category : 'PharoDAP-Structure',
5+
#package : 'PharoDAP',
6+
#tag : 'Structure'
57
}
68

7-
{ #category : #'as yet unclassified' }
9+
{ #category : 'as yet unclassified' }
810
DAPAttachEvent >> initialize [
911
super initialize.
1012
event := 'initialized'
Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
Class {
2-
#name : #DAPAttachResponse,
3-
#superclass : #DAPResponse,
4-
#category : #'PharoDAP-Structure'
2+
#name : 'DAPAttachResponse',
3+
#superclass : 'DAPResponse',
4+
#category : 'PharoDAP-Structure',
5+
#package : 'PharoDAP',
6+
#tag : 'Structure'
57
}

src/PharoDAP/DAPBreakpointChangedEvent.class.st

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Class {
2-
#name : #DAPBreakpointChangedEvent,
3-
#superclass : #DAPBreakpointEvent,
4-
#category : #'PharoDAP-Structure'
2+
#name : 'DAPBreakpointChangedEvent',
3+
#superclass : 'DAPBreakpointEvent',
4+
#category : 'PharoDAP-Structure',
5+
#package : 'PharoDAP',
6+
#tag : 'Structure'
57
}
68

7-
{ #category : #initialization }
9+
{ #category : 'initialization' }
810
DAPBreakpointChangedEvent >> initialize [
911
super initialize.
1012
self body at:#reason put:#changed

src/PharoDAP/DAPBreakpointCreatedEvent.class.st

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Class {
2-
#name : #DAPBreakpointCreatedEvent,
3-
#superclass : #DAPBreakpointEvent,
4-
#category : #'PharoDAP-Structure'
2+
#name : 'DAPBreakpointCreatedEvent',
3+
#superclass : 'DAPBreakpointEvent',
4+
#category : 'PharoDAP-Structure',
5+
#package : 'PharoDAP',
6+
#tag : 'Structure'
57
}
68

7-
{ #category : #initialization }
9+
{ #category : 'initialization' }
810
DAPBreakpointCreatedEvent >> initialize [
911
super initialize.
1012
self body at:#reason put:#new

src/PharoDAP/DAPBreakpointEvent.class.st

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Class {
2-
#name : #DAPBreakpointEvent,
3-
#superclass : #DAPEvent,
4-
#category : #'PharoDAP-Structure'
2+
#name : 'DAPBreakpointEvent',
3+
#superclass : 'DAPEvent',
4+
#category : 'PharoDAP-Structure',
5+
#package : 'PharoDAP',
6+
#tag : 'Structure'
57
}
68

7-
{ #category : #'instance creation' }
9+
{ #category : 'instance creation' }
810
DAPBreakpointEvent class >> newFromABreakpoint: aBpDictionary [
911
| i |
1012
i:= self new.
@@ -13,7 +15,7 @@ DAPBreakpointEvent class >> newFromABreakpoint: aBpDictionary [
1315

1416
]
1517

16-
{ #category : #initialization }
18+
{ #category : 'initialization' }
1719
DAPBreakpointEvent >> initialize [
1820
super initialize.
1921
self event: 'breakpoint'.

src/PharoDAP/DAPBreakpointRemovedEvent.class.st

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
Class {
2-
#name : #DAPBreakpointRemovedEvent,
3-
#superclass : #DAPBreakpointEvent,
4-
#category : #'PharoDAP-Structure'
2+
#name : 'DAPBreakpointRemovedEvent',
3+
#superclass : 'DAPBreakpointEvent',
4+
#category : 'PharoDAP-Structure',
5+
#package : 'PharoDAP',
6+
#tag : 'Structure'
57
}
68

7-
{ #category : #initialization }
9+
{ #category : 'initialization' }
810
DAPBreakpointRemovedEvent >> initialize [
911
super initialize.
1012
self body at:#reason put:#removed

0 commit comments

Comments
 (0)