repo.or.cz
/
cslatevm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog
|
commit
| commitdiff |
tree
|
edit
|
fork
raw
|
patch
(parent:
18cc88f
)
Trivial cleanup for evaluateIn:.
author
Brian T. Rice
<briantrice@gmail.com>
Thu, 11 Mar 2010 01:09:24 +0000 (17:09 -0800)
committer
Brian T. Rice
<briantrice@gmail.com>
Thu, 11 Mar 2010 01:09:24 +0000 (17:09 -0800)
src/core/string.slate
patch
|
blob
|
blame
|
history
diff --git
a/src/core/string.slate
b/src/core/string.slate
index
952d6b0
..
5932254
100644
(file)
--- a/
src/core/string.slate
+++ b/
src/core/string.slate
@@
-458,11
+458,11
@@
s@(String traits) evaluate
].
s@(String traits) evaluateIn: namespace
-[ |parser expr|
+[| parser expr |
parser: (Syntax Parser newOn: s).
[[expr: parser next.
expr evaluateIn: lobby.
- parser isAtEnd not] on: Stream Exhaustion do: [False]] whileTrue.
+ parser isAtEnd] on: Stream Exhaustion do: [False]] whileFalse.
].
c@(String Character traits) as: s@(String traits)