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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- False positives from nested finally-except blocks in `RedundantJump`.
- False positives around wrapped type declarations in `VisibilityKeywordIndentation`.
- Trailing whitespace within comments not recognized in `TrailingWhitespace`.
- Overload resolution failures on the variant overload of the `Copy` intrinsic.
- Several compiler directives were not being recognized:
- `E`
- `F`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,11 @@ private void buildRoutines() {
.param(type(INTEGER))
.param(type(INTEGER))
.returns(IntrinsicReturnType.copy(typeFactory));
routine("Copy")
.param(ANY_VARIANT)
.param(type(INTEGER))
.param(type(INTEGER))
.returns(IntrinsicReturnType.copy(typeFactory));
routine("Copy")
.param(LIKE_DYNAMIC_ARRAY)
.param(dynamicArraySizeType())
Expand Down