Skip to content

Commit e28484f

Browse files
authored
Bump jacodb (#325)
1 parent 3f9bd62 commit e28484f

4 files changed

Lines changed: 4 additions & 4 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-07-18"
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 = "f3655cbc5d"
9+
const val jacodb = "d3e97200d6"
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/test/kotlin/org/usvm/dataflow/ts/test/EtsSceneTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class EtsSceneTest {
149149
blocks = blocks,
150150
successors = successors,
151151
)
152-
it._cfg = cfg
152+
it.body.cfg = cfg
153153
}
154154
val ctorBox = EtsMethodImpl(
155155
signature = EtsMethodSignature(

usvm-ts/src/main/kotlin/org/usvm/util/BuildEtsMethod.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fun buildEtsMethod(
3333
val prog = program(program)
3434
val blockCfg = prog.toBlockCfg()
3535
val etsCfg = blockCfg.toEtsBlockCfg(method)
36-
method._cfg = etsCfg
36+
method.body.cfg = etsCfg
3737

3838
((enclosingClass as EtsClassImpl).methods as MutableList).add(method)
3939
method.enclosingClass = enclosingClass

0 commit comments

Comments
 (0)