Fix list element mapping, add test coverage, and split test files#12
Merged
Fix list element mapping, add test coverage, and split test files#12
Conversation
Generate list.map { } calls in IR when list element types differ,
fixing a bug where List<SourceItem> → List<TargetItem> passed elements
through without transformation. Also adds missing test cases from the
implicit mappings spec (widening + value class edge cases) and splits
the monolithic KMapperTest into 6 focused test files.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
3d055b3 to
36a23a6
Compare
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.
Summary
list.map { }IR calls when list element types differ, fixing a bug whereList<SourceItem>→List<TargetItem>passed elements through without transformation (e.g. value class unwrap in list elements)KMapperTest.kt(52 tests) into 6 focused files:BasicMappingTest,NullableAndDefaultsTest,EnumMappingTest,ListMappingTest,NumericWideningTest,ValueClassTestTest plan
complexListtest now correctly assertsAccountDtoinstead ofAccountValueClassTest🤖 Generated with Claude Code