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
33
33
- False positives around wrapped type declarations in ` VisibilityKeywordIndentation ` .
34
34
- False negatives around inline ` var ` and ` const ` in ` PlatformDependentTruncation ` .
35
35
- Trailing whitespace within comments not recognized in ` TrailingWhitespace ` .
36
+ - Overload resolution failures on the variant overload of the ` Copy ` intrinsic.
36
37
- Several compiler directives were not being recognized:
37
38
- ` E `
38
39
- ` F `
Original file line number Diff line number Diff line change @@ -192,6 +192,11 @@ private void buildRoutines() {
192
192
.param (type (INTEGER ))
193
193
.param (type (INTEGER ))
194
194
.returns (IntrinsicReturnType .copy (typeFactory ));
195
+ routine ("Copy" )
196
+ .param (ANY_VARIANT )
197
+ .param (type (INTEGER ))
198
+ .param (type (INTEGER ))
199
+ .returns (IntrinsicReturnType .copy (typeFactory ));
195
200
routine ("Copy" )
196
201
.param (LIKE_DYNAMIC_ARRAY )
197
202
.param (dynamicArraySizeType ())
You can’t perform that action at this time.
0 commit comments