-
Notifications
You must be signed in to change notification settings - Fork 7
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
Handle dropped fields in methods #31
Conversation
Signed-off-by: Denys Smirnov <denys@sourced.tech>
Signed-off-by: Denys Smirnov <denys@sourced.tech>
Signed-off-by: Denys Smirnov <denys@sourced.tech>
Signed-off-by: Denys Smirnov <denys@sourced.tech>
Signed-off-by: Denys Smirnov <denys@sourced.tech>
@creachadair @bzz Ready for another round. As soon as it's ready, I would say we can release v1.0. |
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.
looks great to me
driver/normalizer/normalizer.go
Outdated
"Type": UASTType(uast.FunctionType{}, dstType), | ||
// If the function was defined with an arrow expression, we will | ||
// generate a uast:Block with a since csharp:Return node containing |
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.
Not sure I can understand this sentence generate a uast:Block with a ...? since csharp:Return node containing
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.
Thanks! Fixed the typo in the latest commit.
Signed-off-by: Denys Smirnov <denys@sourced.tech>
099d8e9
to
b372b4a
Compare
Handle all dropped fields for method/constructor/destructor declarations:
Finally fixes #19
See comments in the code for more details.