-
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.
Improve visualization of Boolean and make access to probe method refe…
…rence more resilient.
- Loading branch information
1 parent
7b5c92a
commit 532f53d
Showing
5 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
packages/Babylonian-UI.package/BPAnnotationMorph.class/instance/methodReference.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 @@ | ||
accessing | ||
methodReference | ||
|
||
^ self annotation methodReference | ||
^ self annotation ifNotNil: [:annotation | annotation methodReference] |
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
8 changes: 8 additions & 0 deletions
8
packages/Babylonian-UI.package/Boolean.extension/instance/bpProbeValueMorphIn..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,8 @@ | ||
*Babylonian-UI | ||
bpProbeValueMorphIn: traceValue | ||
|
||
^ BPAnnotationMorph newContainerMorph | ||
addMorph: ((self printString asMorph) | ||
color: BPAnnotationMorph textColor; | ||
yourself); | ||
yourself |
5 changes: 5 additions & 0 deletions
5
packages/Babylonian-UI.package/Boolean.extension/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" : { | ||
"bpProbeValueMorphIn:" : "pre 3/8/2024 10:35" } } |
2 changes: 2 additions & 0 deletions
2
packages/Babylonian-UI.package/Boolean.extension/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,2 @@ | ||
{ | ||
"name" : "Boolean" } |