parent
21ab3c2d0d
commit
7d0d3ad769
20 changed files with 992 additions and 825 deletions
|
|
@ -75,7 +75,11 @@ impl Operation {
|
|||
.iter()
|
||||
.flat_map(|arg| match arg {
|
||||
OperationArg::None => None,
|
||||
OperationArg::Index(i) => Some(statements[*i].clone().try_into()),
|
||||
OperationArg::Index(i) => {
|
||||
let st: Result<crate::middleware::Statement> =
|
||||
statements[*i].clone().try_into();
|
||||
Some(st)
|
||||
}
|
||||
})
|
||||
.collect::<Result<Vec<_>>>()?;
|
||||
let deref_aux = match self.2 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue