-
Notifications
You must be signed in to change notification settings - Fork 123
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
fix(pretty-printer): support AstTypedParameter
AST node
#1347
fix(pretty-printer): support AstTypedParameter
AST node
#1347
Conversation
CHANGELOG.md
Outdated
@@ -51,6 +51,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
- 'The "remainder" field can only be the last field:' inspection now shows location: PR [#1300](https://github.com/tact-lang/tact/pull/1300) | |||
- Forbid "remainder" field at the middle of a contract storage: PR [#1301](https://github.com/tact-lang/tact/pull/1301) | |||
- Forbid the `override` modifier for functions without the corresponding super-function: PR [#1302](https://github.com/tact-lang/tact/pull/1302) | |||
- Support all remaining AST nodes in pretty printer: PR [#1347](https://github.com/tact-lang/tact/pull/1347) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's list the AST nodes
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
yep, you even fixed those tests in PR #1346 |
ehehe, I meant tests for specific nodes :D |
AstDestructMapping
, AstDestructEnd
, and AstTypedParameter
AST nodes
AstDestructMapping
, AstDestructEnd
, and AstTypedParameter
AST nodesAstTypedParameter
AST node
Issue
Closes #1040.
Checklist