File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
framework/codegen/model/constructor/tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ import org.utbot.framework.plugin.api.UtExecutableCallModel
21
21
import org.utbot.framework.plugin.api.UtModel
22
22
import org.utbot.instrumentation.instrumentation.execution.constructors.UtModelConstructorInterface
23
23
24
- class JsUtModelConstructor : UtModelConstructorInterface {
24
+ class JsUtModelConstructor {
25
25
26
26
// TODO SEVERE: Requires substantial expansion to other types
27
27
@Suppress(" NAME_SHADOWING" )
28
- override fun construct (value : Any? , classId : ClassId ): UtModel {
28
+ fun construct (value : Any? , classId : ClassId ): UtModel {
29
29
val classId = classId as JsClassId
30
30
if (classId == jsErrorClassId) return UtModel (jsErrorClassId)
31
31
return when (value) {
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ package framework.codegen.model.constructor.tree
2
2
3
3
import framework.api.js.JsClassId
4
4
import org.utbot.framework.codegen.domain.context.CgContext
5
+ import org.utbot.framework.codegen.domain.models.CgMethodTestSet
5
6
import org.utbot.framework.codegen.domain.models.CgTestMethod
6
7
import org.utbot.framework.codegen.domain.models.CgTestMethodType
7
8
import org.utbot.framework.codegen.domain.models.CgValue
You can’t perform that action at this time.
0 commit comments