-
Notifications
You must be signed in to change notification settings - Fork 59
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
PrimaryExpression and UnaryExpression are not decomposed #409
Milestone
Comments
this is one of my primary things that concern me about the current API layout, let's try to get this in before a 1.0.0 release! |
WebFreak001
added a commit
to WebFreak001/libdparse
that referenced
this issue
Mar 23, 2023
abstract classes should not have visitor functions, but rather only do dynamic dispatch. This becomes more important later with dlang-community#409
WebFreak001
added a commit
to WebFreak001/libdparse
that referenced
this issue
Mar 23, 2023
abstract classes should not have visitor functions, but rather only do dynamic dispatch. This becomes more important later with dlang-community#409
WebFreak001
added a commit
to WebFreak001/libdparse
that referenced
this issue
Mar 23, 2023
Step 1/2 for dlang-community#409
WebFreak001
added a commit
to WebFreak001/libdparse
that referenced
this issue
Mar 24, 2023
abstract classes should not have visitor functions, but rather only do dynamic dispatch. This becomes more important later with dlang-community#409
WebFreak001
added a commit
that referenced
this issue
Mar 24, 2023
abstract classes should not have visitor functions, but rather only do dynamic dispatch. This becomes more important later with #409
WebFreak001
added a commit
to WebFreak001/libdparse
that referenced
this issue
Mar 24, 2023
Step 1/2 for dlang-community#409
WebFreak001
added a commit
to WebFreak001/libdparse
that referenced
this issue
Apr 5, 2023
Step 1/2 for dlang-community#409
WebFreak001
added a commit
to WebFreak001/libdparse
that referenced
this issue
May 3, 2023
Step 1/2 for dlang-community#409
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PrimaryExpression
andUnaryExpression
are not decomposed and this has a negative impact on the amount of memory used.UnaryExpression should be
and then
For example
a.b.c
takes almost 3 kB of memory.The text was updated successfully, but these errors were encountered: