diff --git a/compiler/src/prog8/compiler/Main.kt b/compiler/src/prog8/compiler/Main.kt index 2371dab64..2f95981ed 100644 --- a/compiler/src/prog8/compiler/Main.kt +++ b/compiler/src/prog8/compiler/Main.kt @@ -65,6 +65,7 @@ fun compileProgram(filepath: Path, val time3 = measureTimeMillis { programAst.reorderStatements() // reorder statements and add type casts, to please the compiler later } + printAst(programAst) //println(" time3: $time3") val time4 = measureTimeMillis { programAst.checkValid(compilerOptions) // check if tree is valid