Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
DEST_DIR="arkanalyzer"
MAX_RETRIES=10
RETRY_DELAY=3 # Delay between retries in seconds
BRANCH="neo/2025-03-21"
BRANCH="neo/2025-04-14"

for ((i=1; i<=MAX_RETRIES; i++)); do
git clone --depth=1 --branch $BRANCH $REPO_URL $DEST_DIR && break
Expand Down
4 changes: 2 additions & 2 deletions jacodb-ets/src/main/kotlin/org/jacodb/ets/dto/Convert.kt
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class EtsMethodBuilder(
)

is PtrCallExprDto -> EtsPtrCallExpr(
ptr = (ptr as LocalDto).toEtsLocal(), // safe cast
ptr = ensureLocal(ptr.toEtsEntity() as EtsValue), // safe cast
method = method.toEtsMethodSignature(),
args = args.map { ensureLocal(it.toEtsEntity()) },
)
Expand Down Expand Up @@ -792,7 +792,7 @@ fun LocalDto.toEtsLocal(): EtsLocal {
)
}

private fun Int.toEtsClassCategory() : EtsClassCategory {
private fun Int.toEtsClassCategory(): EtsClassCategory {
return when (this) {
0 -> EtsClassCategory.CLASS
1 -> EtsClassCategory.STRUCT
Expand Down
2 changes: 1 addition & 1 deletion jacodb-ets/src/main/kotlin/org/jacodb/ets/dto/Values.kt
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ data class StaticCallExprDto(
@Serializable
@SerialName("PtrCallExpr")
data class PtrCallExprDto(
val ptr: ValueDto, // Local
val ptr: ValueDto, // Local or FieldRef
override val method: MethodSignatureDto,
override val args: List<ValueDto>,
) : CallExprDto
Expand Down
Loading