Skip to content

Commit

Permalink
add _ in cexs node id
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamZsofi committed Nov 13, 2024
1 parent 21e7acf commit e3503f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class XstsCliTracegen :

for ((node, state) in summaryStateMap) {
sb.add(
Utils.lispStringBuilder("${node.id}: ${XstsState::class.java.simpleName}")
Utils.lispStringBuilder("_${node.id}: ${XstsState::class.java.simpleName}")
.add(if (state.isInitialized) "post_init" else "pre_init")
.add(if (state.lastActionWasEnv()) "last_env" else "last_internal")
.body()
Expand Down

0 comments on commit e3503f3

Please sign in to comment.