Skip to content

Commit e58ef49

Browse files
authored
Merge pull request #9589 from estebanlm/deprecate-glamour-and-gt
deprecate glamour and gt tools
2 parents 28f73c7 + 3da46c6 commit e58ef49

File tree

346 files changed

+1730
-0
lines changed

Some content is hidden

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

346 files changed

+1730
-0
lines changed

src/GT-BytecodeDebugger/GTBytecodeDebuggerSession.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Class {
88
#category : #'GT-BytecodeDebugger-Model'
99
}
1010

11+
{ #category : #testing }
12+
GTBytecodeDebuggerSession class >> isDeprecated [
13+
^ true
14+
]
15+
1116
{ #category : #'debugging actions' }
1217
GTBytecodeDebuggerSession >> runToBytecode: aSymbolicBytecode inContext: aContext [
1318
"Attempt to step over instructions in selectedContext until the

src/GT-BytecodeDebugger/GTGoAndInspectBytecodeDebugAction.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ GTGoAndInspectBytecodeDebugAction class >> gtBytecodeDebuggerActionFor: aDebugge
1515
^ (self forDebugger: aDebugger)
1616
]
1717

18+
{ #category : #testing }
19+
GTGoAndInspectBytecodeDebugAction class >> isDeprecated [
20+
^ true
21+
]
22+
1823
{ #category : #accessing }
1924
GTGoAndInspectBytecodeDebugAction >> defaultKeymap [
2025

src/GT-BytecodeDebugger/GTStepToBytecodeDebugAction.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ GTStepToBytecodeDebugAction class >> gtBytecodeDebuggerActionFor: aDebugger [
1515
icon: GLMUIThemeExtraIcons glamorousPlay
1616
]
1717

18+
{ #category : #testing }
19+
GTStepToBytecodeDebugAction class >> isDeprecated [
20+
^ true
21+
]
22+
1823
{ #category : #testing }
1924
GTStepToBytecodeDebugAction >> appliesToDebugger: aDebugger [
2025

src/GT-Debugger/GTBrowseMethodDebuggerAction.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ GTBrowseMethodDebuggerAction class >> gtActionFor: aDebugger [
1515
icon: GLMUIThemeExtraIcons glamorousBrowse
1616
]
1717

18+
{ #category : #testing }
19+
GTBrowseMethodDebuggerAction class >> isDeprecated [
20+
^ true
21+
]
22+
1823
{ #category : #accessing }
1924
GTBrowseMethodDebuggerAction >> defaultLabel [
2025

src/GT-Debugger/GTChangeDebuggerAction.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ GTChangeDebuggerAction class >> gtChangeDebuggerActionsFor: aDebugger [
4040
excluding: aDebugger
4141
]
4242

43+
{ #category : #testing }
44+
GTChangeDebuggerAction class >> isDeprecated [
45+
^ true
46+
]
47+
4348
{ #category : #accessing }
4449
GTChangeDebuggerAction >> debuggerClass: aClass [
4550

src/GT-Debugger/GTClearEditorDebugAction.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ GTClearEditorDebugAction class >> gtActionFor: aDebugger [
1515
icon: GLMUIThemeExtraIcons glamorousCancel
1616
]
1717

18+
{ #category : #testing }
19+
GTClearEditorDebugAction class >> isDeprecated [
20+
^ true
21+
]
22+
1823
{ #category : #accessing }
1924
GTClearEditorDebugAction >> defaultIcon [
2025

src/GT-Debugger/GTCodeDebugAction.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ Class {
1111
#category : #'GT-Debugger-Actions'
1212
}
1313

14+
{ #category : #testing }
15+
GTCodeDebugAction class >> isDeprecated [
16+
^ true
17+
]
18+
1419
{ #category : #accessing }
1520
GTCodeDebugAction >> codePresentation [
1621
^ self debugger perform: self codePresentationSelector

src/GT-Debugger/GTDebuggerBrowserUpdateRequest.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ GTDebuggerBrowserUpdateRequest class >> from: anAnnouncement [
1515
^ self new from: anAnnouncement
1616
]
1717

18+
{ #category : #testing }
19+
GTDebuggerBrowserUpdateRequest class >> isDeprecated [
20+
^ true
21+
]
22+
1823
{ #category : #accessing }
1924
GTDebuggerBrowserUpdateRequest >> debugActionExecutedAnnouncement [
2025
^ debugActionExecutedAnnouncement

src/GT-Debugger/GTGenericStackDebuggerSelectionChanged.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ GTGenericStackDebuggerSelectionChanged class >> forDebugger: aDebugger [
1717
^ self new forDebugger: aDebugger
1818
]
1919

20+
{ #category : #testing }
21+
GTGenericStackDebuggerSelectionChanged class >> isDeprecated [
22+
^ true
23+
]
24+
2025
{ #category : #accessing }
2126
GTGenericStackDebuggerSelectionChanged >> debugger [
2227

src/GT-Debugger/GTGlamourWrapperDebuggingAction.class.st

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ GTGlamourWrapperDebuggingAction class >> gtActionFor: aDebugger [
2222
order: (index := index + 10) ]
2323
]
2424

25+
{ #category : #testing }
26+
GTGlamourWrapperDebuggingAction class >> isDeprecated [
27+
^ true
28+
]
29+
2530
{ #category : #transformation }
2631
GTGlamourWrapperDebuggingAction >> asGlamourAction [
2732
|actionBlock|

0 commit comments

Comments
 (0)