forked from AbleScript/ablescript
Fmt!
This commit is contained in:
parent
3ed60f7306
commit
6b5b8998c9
|
@ -449,6 +449,7 @@ impl ops::Not for Value {
|
||||||
tape_len,
|
tape_len,
|
||||||
} => {
|
} => {
|
||||||
instructions.reverse();
|
instructions.reverse();
|
||||||
|
|
||||||
Functio::BfFunctio {
|
Functio::BfFunctio {
|
||||||
instructions,
|
instructions,
|
||||||
tape_len,
|
tape_len,
|
||||||
|
@ -460,6 +461,7 @@ impl ops::Not for Value {
|
||||||
} => {
|
} => {
|
||||||
params.reverse();
|
params.reverse();
|
||||||
body.reverse();
|
body.reverse();
|
||||||
|
|
||||||
Functio::AbleFunctio { params, body }
|
Functio::AbleFunctio { params, body }
|
||||||
}
|
}
|
||||||
Functio::Eval(code) => Functio::Eval(code.chars().rev().collect()),
|
Functio::Eval(code) => Functio::Eval(code.chars().rev().collect()),
|
||||||
|
|
Loading…
Reference in a new issue