We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b2f9aa commit e326d19Copy full SHA for e326d19
1 file changed
usvm-ts-dataflow/src/main/kotlin/org/usvm/dataflow/ts/infer/dto/EtsTypeToDto.kt
@@ -51,7 +51,6 @@ import org.jacodb.ets.model.EtsFunctionType
51
import org.jacodb.ets.model.EtsGenericType
52
import org.jacodb.ets.model.EtsIntersectionType
53
import org.jacodb.ets.model.EtsLexicalEnvType
54
-import org.jacodb.ets.model.EtsLiteralType
55
import org.jacodb.ets.model.EtsNeverType
56
import org.jacodb.ets.model.EtsNullType
57
import org.jacodb.ets.model.EtsNumberLiteralType
@@ -120,7 +119,7 @@ private object EtsTypeToDto : EtsType.Visitor<TypeDto> {
120
119
override fun visit(type: EtsEnumValueType): TypeDto {
121
return EnumValueTypeDto(
122
signature = type.signature.toDto(),
123
- constant = type.constant?.toDto(),
+ name = type.name,
124
)
125
}
126
0 commit comments