removed debug stuff

This commit is contained in:
Sergey Chernov 2025-08-18 01:48:23 +03:00
parent fb6e2aa49e
commit 23737f9b5c
2 changed files with 0 additions and 5 deletions

View File

@ -203,10 +203,6 @@ class Compiler(
val rvalue = parseExpressionLevel(level + 1)
?: throw ScriptError(opToken.pos, "Expecting expression")
if( op.tokenType == Token.Type.ELVIS) {
println("elvis!!")
}
lvalue = op.generate(opToken.pos, lvalue!!, rvalue)
}
return lvalue

View File

@ -101,7 +101,6 @@ interface BitOutput {
val compressed = LZW.compress(source.asUByteArray())
// check that compression is effective including header bits size:
if( compressed.size + 2 < source.size * 8L) {
println("write compressed")
putBit(1)
// LZW algorithm
putBits(0, 2)