added PtBool and other changes to intermediate Ast

This commit is contained in:
Irmen de Jong
2024-02-05 00:02:38 +01:00
parent f40b7b62bb
commit bc2b38daf4
13 changed files with 73 additions and 32 deletions

View File

@ -726,7 +726,7 @@ internal class ProgramAndVarsGen(
private fun zeroFilledArray(numElts: Int): StArray {
val values = mutableListOf<StArrayElement>()
repeat(numElts) {
values.add(StArrayElement(0.0, null))
values.add(StArrayElement(0.0, null, null))
}
return values
}