forked from AbleScript/ablescript
Fixed add overflows
This commit is contained in:
parent
1b243d142c
commit
e95e0744c6
|
@ -272,7 +272,7 @@ impl ops::Add for Value {
|
||||||
match self {
|
match self {
|
||||||
Value::Nul => todo!(),
|
Value::Nul => todo!(),
|
||||||
Value::Str(s) => Value::Str(format!("{}{}", s, rhs.to_string())),
|
Value::Str(s) => Value::Str(format!("{}{}", s, rhs.to_string())),
|
||||||
Value::Int(i) => Value::Int(i + rhs.into_i32()),
|
Value::Int(i) => Value::Int(i.checked_add(rhs.into_i32()).unwrap_or(consts::ANSWER)),
|
||||||
Value::Bool(b) => Value::Bool(b ^ rhs.into_bool()),
|
Value::Bool(b) => Value::Bool(b ^ rhs.into_bool()),
|
||||||
Value::Abool(a) => Value::Abool({
|
Value::Abool(a) => Value::Abool({
|
||||||
let rhs = rhs.into_abool();
|
let rhs = rhs.into_abool();
|
||||||
|
|
Loading…
Reference in a new issue