2025-03-20 11:06:27 +13:00
|
|
|
---
|
|
|
|
source: kcl-lib/src/simulation_tests.rs
|
|
|
|
description: Result of unparsing boolean_logical_or.kcl
|
|
|
|
---
|
|
|
|
aa = true | false
|
|
|
|
a = if aa {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
2
|
|
|
|
}
|
2025-04-22 12:44:52 -05:00
|
|
|
assert(a, isEqualTo = 1, error = "left branch of or is true makes the whole expression true")
|
2025-03-20 11:06:27 +13:00
|
|
|
|
|
|
|
bb = false | true
|
|
|
|
b = if bb {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
2
|
|
|
|
}
|
2025-04-22 12:44:52 -05:00
|
|
|
assert(b, isEqualTo = 1, error = "right branch of or is true makes the whole expression true")
|
2025-03-20 11:06:27 +13:00
|
|
|
|
|
|
|
cc = true | true
|
|
|
|
c = if cc {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
2
|
|
|
|
}
|
2025-04-22 12:44:52 -05:00
|
|
|
assert(c, isEqualTo = 1, error = "both branches of or are true makes the whole expression true")
|
2025-03-20 11:06:27 +13:00
|
|
|
|
|
|
|
dd = false | false
|
|
|
|
d = if dd {
|
|
|
|
1
|
|
|
|
} else {
|
|
|
|
2
|
|
|
|
}
|
2025-04-22 12:44:52 -05:00
|
|
|
assert(d, isEqualTo = 2, error = "both branches of or are false makes the whole expression false")
|