Skip to content

Commit dca5df4

Browse files
committed
Revert
1 parent 642c3e0 commit dca5df4

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

buildSrc/src/main/kotlin/Dependencies.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

usvm-ts-dataflow/src/main/kotlin/org/usvm/dataflow/ts/infer/dto/EtsTypeToDto.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ import org.jacodb.ets.model.EtsFunctionType
5151
import org.jacodb.ets.model.EtsGenericType
5252
import org.jacodb.ets.model.EtsIntersectionType
5353
import org.jacodb.ets.model.EtsLexicalEnvType
54+
import org.jacodb.ets.model.EtsLiteralType
5455
import org.jacodb.ets.model.EtsNeverType
5556
import org.jacodb.ets.model.EtsNullType
5657
import 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

0 commit comments

Comments
 (0)