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