Fix State[] field access for array fields#111
Merged
someone235 merged 1 commit intokaspanet:covpp-reset2from Apr 26, 2026
Merged
Fix State[] field access for array fields#111someone235 merged 1 commit intokaspanet:covpp-reset2from
someone235 merged 1 commit intokaspanet:covpp-reset2from
Conversation
someone235
approved these changes
Apr 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes an issue where State[] field access for fields that are themselves arrays returned:
ERROR: unsupported feature: array element type must have known size
This was due to incorrect order when the debugger flattens State[] into hidden bindings.
The fix is to append outer dimension instead of inserting at 0 index, which results in correct bidings -