You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working on supporting dot shorthands in dart format. I have most of it working but I'm running into an issue with shorthands like:
variable =const .new();
I'm using analyzer 7.4.5 and in the DotShorthandInvocation AST node class, I don't see any way to get the token for the const keyword. Am I missing something?