mirror of
https://github.com/irmen/prog8.git
synced 2025-07-03 01:23:55 +00:00
added PtBool and other changes to intermediate Ast
This commit is contained in:
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user