Add cell paths for streams

This commit is contained in:
JT
2021-09-07 19:35:59 +12:00
parent 71bbd70a57
commit a8646f94ab
5 changed files with 29 additions and 12 deletions

View File

@ -29,7 +29,7 @@ impl EvaluationContext {
// TODO: add ctrl-c support
let value = match value {
Value::ValueStream { stream, span } => Value::List {
Value::Stream { stream, span } => Value::List {
vals: stream.collect(),
span,
},