1
0
mirror of https://github.com/KarolS/millfork.git synced 2025-01-11 12:29:46 +00:00

Remove diagnostic message

This commit is contained in:
Karol Stasiak 2019-04-17 19:17:55 +02:00
parent 0a36d83164
commit e771b37db2

View File

@ -27,11 +27,7 @@ abstract class MfParser[T](fileId: String, input: String, currentDirectory: Stri
def allowIntelHexAtomsInAssembly: Boolean
val enableDebuggingOptions: Boolean = {
val x = options.flag(CompilationFlag.EnableInternalTestSyntax)
println(s"enableDebuggingOptions = $x")
x
}
val enableDebuggingOptions: Boolean = options.flag(CompilationFlag.EnableInternalTestSyntax)
def toAst: Parsed[Program] = program.parse(input + "\n\n\n")