New J2K: Add missing accept's
This commit is contained in:
committed by
Ilya Kirillov
parent
235dacfd88
commit
00c52df519
@@ -134,7 +134,9 @@ class JKTypeCastExpressionImpl(override var expression: JKExpression, type: JKTy
|
|||||||
override var type by child(type)
|
override var type by child(type)
|
||||||
}
|
}
|
||||||
|
|
||||||
class JKTypeElementImpl(override val type: JKType) : JKTypeElement, JKElementBase()
|
class JKTypeElementImpl(override val type: JKType) : JKTypeElement, JKElementBase() {
|
||||||
|
override fun <R, D> accept(visitor: JKVisitor<R, D>, data: D): R = visitor.visitTypeElement(this, data)
|
||||||
|
}
|
||||||
|
|
||||||
class JKClassTypeImpl(
|
class JKClassTypeImpl(
|
||||||
override val classReference: JKClassSymbol,
|
override val classReference: JKClassSymbol,
|
||||||
|
|||||||
@@ -44,6 +44,7 @@ class JKKtFunctionImpl(
|
|||||||
block: JKBlock,
|
block: JKBlock,
|
||||||
modifierList: JKModifierList
|
modifierList: JKModifierList
|
||||||
) : JKBranchElementBase(), JKKtFunction {
|
) : JKBranchElementBase(), JKKtFunction {
|
||||||
|
override fun <R, D> accept(visitor: JKVisitor<R, D>, data: D): R = visitor.visitKtFunction(this, data)
|
||||||
|
|
||||||
override var returnType: JKTypeElement by child(returnType)
|
override var returnType: JKTypeElement by child(returnType)
|
||||||
override var name: JKNameIdentifier by child(name)
|
override var name: JKNameIdentifier by child(name)
|
||||||
|
|||||||
Reference in New Issue
Block a user