File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
delphi-frontend/src/main/java/au/com/integradev/delphi/type/intrinsic Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3333- False positives around wrapped type declarations in ` VisibilityKeywordIndentation ` .
3434- False negatives around inline ` var ` and ` const ` in ` PlatformDependentTruncation ` .
3535- Trailing whitespace within comments not recognized in ` TrailingWhitespace ` .
36+ - Overload resolution failures on the variant overload of the ` Copy ` intrinsic.
3637- Several compiler directives were not being recognized:
3738 - ` E `
3839 - ` F `
Original file line number Diff line number Diff line change @@ -192,6 +192,11 @@ private void buildRoutines() {
192192 .param (type (INTEGER ))
193193 .param (type (INTEGER ))
194194 .returns (IntrinsicReturnType .copy (typeFactory ));
195+ routine ("Copy" )
196+ .param (ANY_VARIANT )
197+ .param (type (INTEGER ))
198+ .param (type (INTEGER ))
199+ .returns (IntrinsicReturnType .copy (typeFactory ));
195200 routine ("Copy" )
196201 .param (LIKE_DYNAMIC_ARRAY )
197202 .param (dynamicArraySizeType ())
You can’t perform that action at this time.
0 commit comments