Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GenericTypes not mapped to method-bodys #3

Closed
ProHolz opened this issue Mar 25, 2019 · 2 comments
Closed

GenericTypes not mapped to method-bodys #3

ProHolz opened this issue Mar 25, 2019 · 2 comments

Comments

@ProHolz
Copy link

ProHolz commented Mar 25, 2019

actual result as Example:

type
  TGenericClass<T> = class
  private
    var fData: array of T;
  public
    constructor;
    method Test;
  end;
implementation
constructor TGenericClass;
begin
  fdata := [];
end;
method TGenericClass.Test;
begin
  fdata[0] := '';
end;
@dwarfland
Copy link
Member

Fixed

@ProHolz
Copy link
Author

ProHolz commented Mar 26, 2019

for methods it is working,
missing constructors and for Delphi destructors

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants