dont error when running empty files
s-ol
2 years ago
249 | 249 |
eval: (scope, tail) =>
|
250 | 250 |
scope = Scope scope
|
251 | 251 |
children = [expr\eval scope for expr in *tail]
|
252 | |
RTNode :children, result: children[#children].result
|
|
252 |
last = children[#children]
|
|
253 |
RTNode :children, result: last and last.result
|
253 | 254 |
|
254 | 255 |
if_ = Constant.meta
|
255 | 256 |
meta:
|