File tree Expand file tree Collapse file tree
usvm-ts-dataflow/src/main/kotlin/org/usvm/dataflow/ts/infer/dto Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ jobs:
130130 DEST_DIR="arkanalyzer"
131131 MAX_RETRIES=10
132132 RETRY_DELAY=3 # Delay between retries in seconds
133- BRANCH="neo/2025-09-03 "
133+ BRANCH="neo/2025-08-12 "
134134
135135 for ((i=1; i<=MAX_RETRIES; i++)); do
136136 git clone --depth=1 --branch $BRANCH $REPO_URL $DEST_DIR && break
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ object Versions {
66 const val clikt = " 5.0.0"
77 const val detekt = " 1.23.7"
88 const val ini4j = " 0.5.4"
9- const val jacodb = " ae31fa9328 "
9+ const val jacodb = " bb51484fb4 "
1010 const val juliet = " 1.3.2"
1111 const val junit = " 5.9.3"
1212 const val kotlin = " 2.1.0"
Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ import org.jacodb.ets.model.EtsFunctionType
5151import org.jacodb.ets.model.EtsGenericType
5252import org.jacodb.ets.model.EtsIntersectionType
5353import org.jacodb.ets.model.EtsLexicalEnvType
54+ import org.jacodb.ets.model.EtsLiteralType
5455import org.jacodb.ets.model.EtsNeverType
5556import org.jacodb.ets.model.EtsNullType
5657import org.jacodb.ets.model.EtsNumberLiteralType
@@ -119,7 +120,7 @@ private object EtsTypeToDto : EtsType.Visitor<TypeDto> {
119120 override fun visit (type : EtsEnumValueType ): TypeDto {
120121 return EnumValueTypeDto (
121122 signature = type.signature.toDto(),
122- name = type.name ,
123+ constant = type.constant?.toDto() ,
123124 )
124125 }
125126
You can’t perform that action at this time.
0 commit comments