-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from OpenSmock/better_inspector
- Loading branch information
Showing
25 changed files
with
622 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
src/Molecule-IDE/MolBreakOnComponentActivateCommand.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Class { | ||
#name : #MolBreakOnComponentActivateCommand, | ||
#superclass : #MolClassesCmdCommand, | ||
#category : #'Molecule-IDE-Commands' | ||
} | ||
|
||
{ #category : #activation } | ||
MolBreakOnComponentActivateCommand class >> browserMenuActivation [ | ||
|
||
<classAnnotation> | ||
^ CmdContextMenuActivation | ||
byItemOf: MolCmdMenuGroup | ||
order: 51 | ||
for: ClyFullBrowserClassContext | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentActivateCommand >> defaultMenuIconName [ | ||
|
||
^ #halt | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentActivateCommand >> defaultMenuItemName [ | ||
|
||
^ 'Break once when state switch to #activate' | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentActivateCommand >> description [ | ||
|
||
^ 'Add a breakpoint that trigger once when #componentActivate is call for this specific class.' | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentActivateCommand >> execute [ | ||
|
||
self selectedComponentClasses do: #breakOnceOnComponentActivate | ||
] |
39 changes: 39 additions & 0 deletions
39
src/Molecule-IDE/MolBreakOnComponentInitializeCommand.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Class { | ||
#name : #MolBreakOnComponentInitializeCommand, | ||
#superclass : #MolClassesCmdCommand, | ||
#category : #'Molecule-IDE-Commands' | ||
} | ||
|
||
{ #category : #activation } | ||
MolBreakOnComponentInitializeCommand class >> browserMenuActivation [ | ||
|
||
<classAnnotation> | ||
^ CmdContextMenuActivation | ||
byItemOf: MolCmdMenuGroup | ||
order: 50 | ||
for: ClyFullBrowserClassContext | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentInitializeCommand >> defaultMenuIconName [ | ||
|
||
^ #halt | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentInitializeCommand >> defaultMenuItemName [ | ||
|
||
^ 'Break once when state switch to #initialize' | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentInitializeCommand >> description [ | ||
|
||
^ 'Add a breakpoint that trigger once when #componentInitialize is call for any instances of this specific class.' | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentInitializeCommand >> execute [ | ||
|
||
self selectedComponentClasses do: #breakOnceOnComponentInitialize | ||
] |
39 changes: 39 additions & 0 deletions
39
src/Molecule-IDE/MolBreakOnComponentPassivateCommand.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Class { | ||
#name : #MolBreakOnComponentPassivateCommand, | ||
#superclass : #MolClassesCmdCommand, | ||
#category : #'Molecule-IDE-Commands' | ||
} | ||
|
||
{ #category : #activation } | ||
MolBreakOnComponentPassivateCommand class >> browserMenuActivation [ | ||
|
||
<classAnnotation> | ||
^ CmdContextMenuActivation | ||
byItemOf: MolCmdMenuGroup | ||
order: 52 | ||
for: ClyFullBrowserClassContext | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentPassivateCommand >> defaultMenuIconName [ | ||
|
||
^ #halt | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentPassivateCommand >> defaultMenuItemName [ | ||
|
||
^ 'Break once when state switch to #passivate' | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentPassivateCommand >> description [ | ||
|
||
^ 'Add a breakpoint that trigger once when #componentPassivate is call for any instances of this specific class.' | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentPassivateCommand >> execute [ | ||
|
||
self selectedComponentClasses do: #breakOnceOnComponentPassivate | ||
] |
39 changes: 39 additions & 0 deletions
39
src/Molecule-IDE/MolBreakOnComponentRemoveCommand.class.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Class { | ||
#name : #MolBreakOnComponentRemoveCommand, | ||
#superclass : #MolClassesCmdCommand, | ||
#category : #'Molecule-IDE-Commands' | ||
} | ||
|
||
{ #category : #activation } | ||
MolBreakOnComponentRemoveCommand class >> browserMenuActivation [ | ||
|
||
<classAnnotation> | ||
^ CmdContextMenuActivation | ||
byItemOf: MolCmdMenuGroup | ||
order: 53 | ||
for: ClyFullBrowserClassContext | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentRemoveCommand >> defaultMenuIconName [ | ||
|
||
^ #halt | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentRemoveCommand >> defaultMenuItemName [ | ||
|
||
^ 'Break once when state switch to #remove' | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentRemoveCommand >> description [ | ||
|
||
^ 'Add a breakpoint that trigger once when #componentRemove is call for any instances of this specific class.' | ||
] | ||
|
||
{ #category : #accessing } | ||
MolBreakOnComponentRemoveCommand >> execute [ | ||
|
||
self selectedComponentClasses do: #breakOnceOnComponentRemove | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.