We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently :
p1 : Class = Class(1,2) #transformed into in the ASR p1: Class = Class() p1___init__(p1, 1, 2)
Instead in the ASR it should be kept as :
p1 : Class = Class(1, 2) #Structconstructor
and in the ASR-> ASR pass ClassConstructor replace as
p1: Class p1___init__(p1, 1, 2)
Also add the parameters original_name and dt(p1 here) to the subroutine that is being called.
original_name
dt
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently :
Instead in the ASR it should be kept as :
and in the ASR-> ASR pass ClassConstructor replace as
Also add the parameters
original_name
anddt
(p1 here) to the subroutine that is being called.The text was updated successfully, but these errors were encountered: