New J2K: Add missing accept for null literal
This commit is contained in:
committed by
Ilya Kirillov
parent
4637903e00
commit
34b535c8ab
@@ -189,6 +189,8 @@ class JKNullLiteral : JKLiteralExpression, JKElementBase() {
|
|||||||
get() = "null"
|
get() = "null"
|
||||||
override val type: LiteralType
|
override val type: LiteralType
|
||||||
get() = NULL
|
get() = NULL
|
||||||
|
|
||||||
|
override fun <R, D> accept(visitor: JKVisitor<R, D>, data: D): R = visitor.visitLiteralExpression(this, data)
|
||||||
}
|
}
|
||||||
|
|
||||||
class JKBooleanLiteral(val value: Boolean) : JKLiteralExpression, JKElementBase() {
|
class JKBooleanLiteral(val value: Boolean) : JKLiteralExpression, JKElementBase() {
|
||||||
|
|||||||
Reference in New Issue
Block a user