mirror of
https://github.com/irmen/prog8.git
synced 2024-11-22 15:33:02 +00:00
improved bool type checking
This commit is contained in:
parent
211e2bb37a
commit
6a57337a68
@ -919,12 +919,12 @@ internal class AstChecker(private val program: Program,
|
||||
errors.err("can't use boolean operand with this comparison operator", expr.position)
|
||||
}
|
||||
if(expr.operator in setOf("-", "*", "/", "%") && (leftDt==DataType.BOOL || (expr.left as? TypecastExpression)?.expression?.inferType(program)?.istype(DataType.BOOL)==true)) {
|
||||
errors.err("can't use boolean operand with this operator", expr.left.position)
|
||||
errors.err("can't use boolean operand with this operator ${expr.operator}", expr.left.position)
|
||||
}
|
||||
if(expr.operator=="+" && (leftDt==DataType.BOOL || (expr.left as? TypecastExpression)?.expression?.inferType(program)?.istype(DataType.BOOL)==true)) {
|
||||
val rightNum = expr.right.constValue(program)?.number ?: 0.0
|
||||
if(rightNum > 1.0)
|
||||
errors.err("can't use boolean operand with this operator", expr.left.position)
|
||||
errors.err("can't use boolean operand with this operator ${expr.operator}", expr.left.position)
|
||||
}
|
||||
if(expr.operator == "==" || expr.operator == "!=") {
|
||||
val leftNum = expr.left.constValue(program)?.number ?: 0.0
|
||||
@ -934,7 +934,7 @@ internal class AstChecker(private val program: Program,
|
||||
}
|
||||
}
|
||||
if((expr.operator == "/" || expr.operator == "%") && ( rightDt==DataType.BOOL || (expr.right as? TypecastExpression)?.expression?.inferType(program)?.istype(DataType.BOOL)==true)) {
|
||||
errors.err("can't use boolean operand with this operator", expr.right.position)
|
||||
errors.err("can't use boolean operand with this operator ${expr.operator}", expr.right.position)
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1170,7 +1170,7 @@ internal class AstChecker(private val program: Program,
|
||||
// else if(postIncrDecr.target.memoryAddress != null) { } // a memory location can always be ++/--
|
||||
|
||||
if(postIncrDecr.target.inferType(program) istype DataType.BOOL) {
|
||||
errors.err("can't use boolean operand with this operator", postIncrDecr.position)
|
||||
errors.err("can't use boolean operand with this operator ${postIncrDecr.operator}", postIncrDecr.position)
|
||||
}
|
||||
|
||||
super.visit(postIncrDecr)
|
||||
|
@ -743,7 +743,7 @@ class TestProg8Parser: FunSpec( {
|
||||
main {
|
||||
ubyte bb
|
||||
uword ww
|
||||
ubyte bb2 = (3+bb) or (3333+ww) ; expression combining ubyte and uword
|
||||
bool bb2 = (3+bb) or (3333+ww) ; expression combining ubyte and uword
|
||||
}
|
||||
""")
|
||||
val module = parseModule(src)
|
||||
@ -755,7 +755,7 @@ class TestProg8Parser: FunSpec( {
|
||||
expr.operator shouldBe "or"
|
||||
expr.left.inferType(program).getOrElse { fail("dt") } shouldBe DataType.UBYTE
|
||||
expr.right.inferType(program).getOrElse { fail("dt") } shouldBe DataType.UWORD
|
||||
expr.inferType(program).getOrElse { fail("dt") } shouldBe DataType.UBYTE
|
||||
expr.inferType(program).getOrElse { fail("dt") } shouldBe DataType.BOOL
|
||||
}
|
||||
|
||||
test("inferred type for typecasted expressions with logical operators") {
|
||||
@ -779,15 +779,15 @@ class TestProg8Parser: FunSpec( {
|
||||
val bb2 = (stmts[4] as VarDecl).value as BinaryExpression
|
||||
val zz2 = (stmts[5] as VarDecl).value as BinaryExpression
|
||||
qq.inferType(program).getOrElse { fail("dt") } shouldBe DataType.UWORD
|
||||
zz.inferType(program).getOrElse { fail("dt") } shouldBe DataType.UBYTE
|
||||
bb2.inferType(program).getOrElse { fail("dt") } shouldBe DataType.UBYTE
|
||||
zz.inferType(program).getOrElse { fail("dt") } shouldBe DataType.BOOL
|
||||
bb2.inferType(program).getOrElse { fail("dt") } shouldBe DataType.BOOL
|
||||
|
||||
zz2.operator shouldBe "or"
|
||||
val left = zz2.left as TypecastExpression
|
||||
val right = zz2.right as PrefixExpression
|
||||
left.inferType(program).getOrElse { fail("dt") } shouldBe DataType.UWORD
|
||||
right.inferType(program).getOrElse { fail("dt") } shouldBe DataType.UWORD
|
||||
zz2.inferType(program).getOrElse { fail("dt") } shouldBe DataType.UBYTE // 'or' causes UBYTE result
|
||||
zz2.inferType(program).getOrElse { fail("dt") } shouldBe DataType.BOOL
|
||||
}
|
||||
|
||||
test("type cast from byte to ubyte as desired target type") {
|
||||
|
Loading…
Reference in New Issue
Block a user