File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
utbot-python/src/main/kotlin/org/utbot/python/framework/codegen/model/constructor/tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,16 @@ import org.utbot.python.framework.api.python.util.pythonDictClassId
22
22
import org.utbot.python.framework.api.python.util.pythonListClassId
23
23
import org.utbot.python.framework.api.python.util.pythonNoneClassId
24
24
import org.utbot.python.framework.codegen.PythonCgLanguageAssistant
25
- import org.utbot.python.framework.codegen.model.tree.*
25
+ import org.utbot.python.framework.codegen.model.tree.CgPythonDict
26
+ import org.utbot.python.framework.codegen.model.tree.CgPythonIndex
27
+ import org.utbot.python.framework.codegen.model.tree.CgPythonIterator
28
+ import org.utbot.python.framework.codegen.model.tree.CgPythonList
29
+ import org.utbot.python.framework.codegen.model.tree.CgPythonNdarray
30
+ import org.utbot.python.framework.codegen.model.tree.CgPythonRepr
31
+ import org.utbot.python.framework.codegen.model.tree.CgPythonSet
32
+ import org.utbot.python.framework.codegen.model.tree.CgPythonTree
33
+ import org.utbot.python.framework.codegen.model.tree.CgPythonTuple
34
+
26
35
27
36
class PythonCgVariableConstructor (cgContext : CgContext ) : CgVariableConstructor(cgContext) {
28
37
private val nameGenerator = CgComponents .getNameGeneratorBy(context)
@@ -194,8 +203,6 @@ class PythonCgVariableConstructor(cgContext: CgContext) : CgVariableConstructor(
194
203
return Pair (obj, context.currentBlock.toList())
195
204
}
196
205
197
-
198
- // TODO: NDArray
199
206
else -> {
200
207
throw UnsupportedOperationException ()
201
208
}
You can’t perform that action at this time.
0 commit comments