-
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: basic eval is pretty much working ... play around with a fe…
…w more commands, before addressing the tODE test failures (run failing tests using --debugGem)
- Loading branch information
1 parent
155731e
commit 428308d
Showing
7 changed files
with
75 additions
and
19 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
15 changes: 9 additions & 6 deletions
15
...t.class/instance/_serverExecuteString..st → ...stance/_serverExecuteString.debugMode..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
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
9 changes: 9 additions & 0 deletions
9
...de.package/TDExternalSessionClient.class/instance/evaluateCommand.batchMode.debugMode..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,9 @@ | ||
evaluation | ||
evaluateCommand: command batchMode: batchBool debugMode: debugMode | ||
| stonString | | ||
stonString := STON toString: command. | ||
^ self | ||
_serverExecuteString: | ||
'(' , self todeServerAccessString , ' for: ' , self shell shellId asString | ||
, ') evaluateSTONCommand:' , stonString printString | ||
debugMode: debugMode |
2 changes: 1 addition & 1 deletion
2
src/GsDevKit_stones-Tode.package/TDShell.class/class/sessionDescription.evaluate..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,3 +1,3 @@ | ||
instance creation | ||
sessionDescription: sessionDescription evaluate: script | ||
^ self sessionDescription: sessionDescription evaluate: script debugMode: true | ||
^ self sessionDescription: sessionDescription evaluate: script debugMode: false |
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