-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Display trace values of linked probes as instance variable's trace
- Loading branch information
Showing
29 changed files
with
84 additions
and
47 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
4 changes: 0 additions & 4 deletions
4
packages/Babylonian-UI.package/BPAssertionMorph.class/instance/newValuesMorphTracing..st
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-UI.package/BPAssertionMorph.class/instance/valuesMorphClass.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,4 @@ | ||
private - ui | ||
valuesMorphClass | ||
|
||
^ BPAssertionValuesMorph |
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
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-UI.package/BPAssignmentProbeMorph.class/instance/valuesMorphClass.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,4 @@ | ||
private - ui | ||
valuesMorphClass | ||
|
||
^ BPAssignmentValuesMorph |
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
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-UI.package/BPInstanceVariableProbeMorph.class/instance/linkedProbes.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,4 @@ | ||
accessing | ||
linkedProbes | ||
|
||
^ self annotation linkedProbes |
2 changes: 1 addition & 1 deletion
2
.../Babylonian-UI.package/BPInstanceVariableProbeMorph.class/instance/removeButtonClicked.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
as yet unclassified | ||
actions | ||
removeButtonClicked | ||
|
||
self annotation deleteLinkedProbes. | ||
|
17 changes: 0 additions & 17 deletions
17
packages/Babylonian-UI.package/BPInstanceVariableProbeMorph.class/instance/step.st
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
...I.package/BPInstanceVariableProbeMorph.class/instance/updateExpressionMorphIfNecessary.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,4 @@ | ||
private - ui | ||
updateExpressionMorphIfNecessary | ||
|
||
"Expressions can not be put on instance variable probes currently --jb, pre" |
4 changes: 4 additions & 0 deletions
4
...ges/Babylonian-UI.package/BPInstanceVariableProbeMorph.class/instance/valuesMorphClass.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,4 @@ | ||
private - ui | ||
valuesMorphClass | ||
|
||
^ BPInstanceVariableValuesMorph |
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
1 change: 1 addition & 0 deletions
1
packages/Babylonian-UI.package/BPInstanceVariableValuesMorph.class/README.md
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 @@ | ||
Collect traces values not for the given probe id, but the linked probe ids in chronological order |
5 changes: 5 additions & 0 deletions
5
...ges/Babylonian-UI.package/BPInstanceVariableValuesMorph.class/instance/basicValuesFor..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,5 @@ | ||
accessing | ||
basicValuesFor: aTrace | ||
|
||
^ ((self probeMorph linkedProbes collect: [:aLinkedProbe | aTrace valuesForProbeId: aLinkedProbe id]) flatten) | ||
sorted: [:aTraceValue | aTraceValue chronologicalPosition] ascending |
5 changes: 5 additions & 0 deletions
5
packages/Babylonian-UI.package/BPInstanceVariableValuesMorph.class/methodProperties.json
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,5 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"basicValuesFor:" : "joabe 10/6/2023 11:23" } } |
14 changes: 14 additions & 0 deletions
14
packages/Babylonian-UI.package/BPInstanceVariableValuesMorph.class/properties.json
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,14 @@ | ||
{ | ||
"category" : "Babylonian-UI-Morphs", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "joabe 10/6/2023 11:11", | ||
"instvars" : [ | ||
], | ||
"name" : "BPInstanceVariableValuesMorph", | ||
"pools" : [ | ||
], | ||
"super" : "BPValuesMorph", | ||
"type" : "normal" } |
3 changes: 1 addition & 2 deletions
3
packages/Babylonian-UI.package/BPProbeMorph.class/instance/newValuesMorphTracing..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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
private - ui | ||
newValuesMorphTracing: aTrace | ||
|
||
|
||
^ BPValuesMorph newIn: self tracing: aTrace | ||
^ self valuesMorphClass newIn: self tracing: aTrace |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-UI.package/BPProbeMorph.class/instance/valuesMorphClass.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,4 @@ | ||
private - ui | ||
valuesMorphClass | ||
|
||
^ BPValuesMorph |
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
5 changes: 0 additions & 5 deletions
5
...ages/Babylonian-UI.package/BPProfilingProbeMorph.class/instance/newValuesMorphTracing..st
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-UI.package/BPProfilingProbeMorph.class/instance/valuesMorphClass.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,4 @@ | ||
private - ui | ||
valuesMorphClass | ||
|
||
^ BPProfilingValuesMorph |
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
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-UI.package/BPTraceBasedMorph.class/instance/valuesMorphClass.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,4 @@ | ||
private - ui | ||
valuesMorphClass | ||
|
||
self subclassResponsibility |
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
5 changes: 0 additions & 5 deletions
5
packages/Babylonian-UI.package/BPTypeProbeMorph.class/instance/newValuesMorphTracing..st
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-UI.package/BPTypeProbeMorph.class/instance/valuesMorphClass.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,4 @@ | ||
private - ui | ||
valuesMorphClass | ||
|
||
^ BPTypeValuesMorph |
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