Adjust J2K to new labels syntax

This commit is contained in:
Denis Zharkov
2015-04-27 14:40:10 +03:00
parent 89c72d9400
commit 5977302465
@@ -39,7 +39,7 @@ class ExpressionListStatement(val expressions: List<Expression>) : Expression()
class LabeledStatement(val name: Identifier, val statement: Element) : Statement() {
override fun generateCode(builder: CodeBuilder) {
builder append "@" append name append " " append statement
builder append name append "@" append " " append statement
}
}