removed debug stuff
This commit is contained in:
parent
fb6e2aa49e
commit
23737f9b5c
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user