File tree Expand file tree Collapse file tree
usvm-ts-dataflow/src/test/kotlin/org/usvm/dataflow/ts/test
usvm-ts/src/main/kotlin/org/usvm/util 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-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
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 = " 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"
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments