Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debugger protocol cleaning #590

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/NewTools-Debugger/ArgumentVariable.extension.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #ArgumentVariable }
Extension { #name : 'ArgumentVariable' }

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
ArgumentVariable >> variableTag [
^ 'arg'
]
4 changes: 2 additions & 2 deletions src/NewTools-Debugger/CmAbstractCommandsGroup.extension.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #CmAbstractCommandsGroup }
Extension { #name : 'CmAbstractCommandsGroup' }

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
CmAbstractCommandsGroup >> commandOrGroupNamed: aString ifNone: aBlock [
self subclassResponsibility
]
4 changes: 2 additions & 2 deletions src/NewTools-Debugger/CmCommandGroup.extension.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #CmCommandGroup }
Extension { #name : 'CmCommandGroup' }

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
CmCommandGroup >> commandOrGroupNamed: aString ifNone: aBlock [
^ entries
detect: [ :commandOrRegister | commandOrRegister name = aString ]
Expand Down
4 changes: 2 additions & 2 deletions src/NewTools-Debugger/CmCommandGroupDecorator.extension.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #CmCommandGroupDecorator }
Extension { #name : 'CmCommandGroupDecorator' }

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
CmCommandGroupDecorator >> commandOrGroupNamed: aString ifNone: aBlock [
^ self decoratedGroup commandOrGroupNamed: aString ifNone: aBlock
]
6 changes: 3 additions & 3 deletions src/NewTools-Debugger/Context.extension.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #Context }
Extension { #name : 'Context' }

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
Context >> findFailedAssertionContextInSenderChain [

^ (self findContextSuchThat: [ :ctx |
Expand All @@ -9,7 +9,7 @@ Context >> findFailedAssertionContextInSenderChain [
StDebuggeAssertionFailureContextNotFound new signal ]
]

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
Context >> findFailedAssertionResultsInSenderChain [
|assertionContext assertionResult|
assertionContext := self findFailedAssertionContextInSenderChain.
Expand Down
8 changes: 4 additions & 4 deletions src/NewTools-Debugger/DebugSession.extension.st
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Extension { #name : #DebugSession }
Extension { #name : 'DebugSession' }

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
DebugSession >> application [

^ nil
]

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
DebugSession >> application: anApplication [
]

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
DebugSession >> spanNewSession [

^ (self class
Expand Down
6 changes: 3 additions & 3 deletions src/NewTools-Debugger/Object.extension.st
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Extension { #name : #Object }
Extension { #name : 'Object' }

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
Object >> presentDiffIn: aStFailingAssertionPresenter [

aStFailingAssertionPresenter initializeObjectDiffPresenters
]

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
Object >> presentDiffWith: anObject in: aStFailingAssertionPresenter [

aStFailingAssertionPresenter initializeObjectDiffPresenters
Expand Down
4 changes: 2 additions & 2 deletions src/NewTools-Debugger/SpCodePresenter.extension.st
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Extension { #name : #SpCodePresenter }
Extension { #name : 'SpCodePresenter' }

{ #category : #'*NewTools-Debugger' }
{ #category : '*NewTools-Debugger' }
SpCodePresenter >> beForContext: aContext [
self interactionModel: (StDebuggerContextInteractionModel on: aContext)
]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
I am raised when a context cannot find in its sender chain an assertion failure context, that is, a context that compared two value, an actual and an expected.
"
Class {
#name : #StDebuggeAssertionFailureContextNotFound,
#superclass : #Exception,
#category : #'NewTools-Debugger-Model'
#name : 'StDebuggeAssertionFailureContextNotFound',
#superclass : 'Exception',
#category : 'NewTools-Debugger-Model',
#package : 'NewTools-Debugger',
#tag : 'Model'
}
Loading