usesuper::{Context, Executable};usecrate::{syntax::ast::node::Spread,Result, Value};implExecutable forSpread{fnrun(&self, interpreter:&mut Context)->Result<Value>{// TODO: for now we can do nothing but return the value as-is
self.val().run(interpreter)}}