Remove 'eval' command.

Was introduced as a work-around to get some debugging info out of scripts, but tests do now provide the same capability with a better output and, do so automatically.
This commit is contained in:
KtorZ
2022-12-14 22:10:15 +01:00
parent 978a6c6981
commit e5972640d2
7 changed files with 18 additions and 63 deletions

View File

@@ -94,7 +94,7 @@ impl TypedFunction {
left,
right,
..
} if tipo == &bool() => Some((name.clone(), left.clone(), right.clone())),
} if tipo == &bool() => Some((*name, left.clone(), right.clone())),
_ => None,
}
}