-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #4: successfully execute execute: 'todeIt.solo "eval
3+4
" -D'…
… ... returning a Text object
- Loading branch information
1 parent
1280518
commit 1ae32dd
Showing
19 changed files
with
62 additions
and
6 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
8 changes: 8 additions & 0 deletions
8
src/GsDevKit_stones-GLASS.package/CharacterCollection.extension/instance/capitalized.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 @@ | ||
*gsdevkit_stones-glass | ||
capitalized | ||
"Return a copy with the first letter capitalized" | ||
| cap | | ||
self size == 0 ifTrue: [ ^ self copy ]. | ||
cap := self copy. | ||
cap at: 1 put: (cap at: 1) asUppercase. | ||
^ cap |
2 changes: 2 additions & 0 deletions
2
src/GsDevKit_stones-GLASS.package/CharacterCollection.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" : "CharacterCollection" } |
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
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-GLASS.package/Magnitude.extension/instance/min.max..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,3 @@ | ||
*gsdevkit_stones-glass | ||
min: aMin max: aMax | ||
^ (self min: aMin) max: aMax |
2 changes: 2 additions & 0 deletions
2
src/GsDevKit_stones-GLASS.package/Magnitude.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" : "Magnitude" } |
7 changes: 7 additions & 0 deletions
7
src/GsDevKit_stones-GLASS.package/Object.extension/instance/instVarNamed.put..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,7 @@ | ||
*gsdevkit_stones-glass | ||
instVarNamed: aString put: aValue | ||
"Store into the value of the instance variable in me of that name. Slow and unclean, but very useful. " | ||
|
||
^ self | ||
instVarAt: (self class allInstVarNames indexOfIdentical: aString asSymbol) | ||
put: aValue |
2 changes: 2 additions & 0 deletions
2
src/GsDevKit_stones-GLASS.package/Object.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" : "Object" } |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-GLASS.package/RunArray.class/class/fromSton..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 @@ | ||
instance creation | ||
fromSton: stonReader | ||
^ self new | ||
fromSton: stonReader; | ||
yourself |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-GLASS.package/RunArray.class/instance/fromStone..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 @@ | ||
printing | ||
fromSton: stonReader | ||
stonReader | ||
parseMapDo: [ :instVarName :value | self instVarNamed: instVarName put: value ] |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-GLASS.package/RunArray.class/instance/stonOn..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,3 @@ | ||
printing | ||
stonOn: stonWriter | ||
stonWriter writeObject: self |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-GLASS.package/Symbol.extension/instance/capitalized.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,3 @@ | ||
*gsdevkit_stones-glass | ||
capitalized | ||
^ self asString capitalized asSymbol |
2 changes: 2 additions & 0 deletions
2
src/GsDevKit_stones-GLASS.package/Symbol.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" : "Symbol" } |
5 changes: 5 additions & 0 deletions
5
src/GsDevKit_stones-GLASS.package/Text.class/class/fromSton..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 @@ | ||
ston | ||
fromSton: stonReader | ||
^ self new | ||
fromSton: stonReader; | ||
yourself |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-GLASS.package/Text.class/instance/fromSton..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 @@ | ||
ston | ||
fromSton: stonReader | ||
stonReader | ||
parseMapDo: [ :instVarName :value | self instVarNamed: instVarName put: value ] |
3 changes: 3 additions & 0 deletions
3
src/GsDevKit_stones-GLASS.package/Text.class/instance/stonOn..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,3 @@ | ||
ston | ||
stonOn: stonWriter | ||
stonWriter writeObject: self |
4 changes: 4 additions & 0 deletions
4
src/GsDevKit_stones-Tode.package/TDExternalSessionClient.class/instance/logout.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 @@ | ||
session management | ||
logout | ||
self session logout. | ||
^ nil |
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