-
Notifications
You must be signed in to change notification settings - Fork 215
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
Add support for transient
keyword
#1670
Comments
ping @ryjones / @seanyoung, would be great to get support for this |
@zerosnacks I do backend stuff, not code, but I've added the right people |
Thanks! I appreciate it |
I just need to find some time to add this feature to the parser - should be straightforward. |
So I had a look at this - it's not so simple. The way this is added to solc is that there is no new keyword. For example: contract C {
uint transient transient;
} is allowed. We need to figure out how to add this without adding a new keyword. |
Request
0.8.28
introduced thetransient
keyword in Solidity: https://soliditylang.org/blog/2024/10/09/solidity-0.8.28-release-announcement/Context
Foundry uses Solang's parser for its formatter, see foundry-rs/foundry#9088
The text was updated successfully, but these errors were encountered: