-
Notifications
You must be signed in to change notification settings - Fork 5
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
Migrate to Abstract Syntax Trees Generator in mutator #242
Comments
after cqfn/astranaut#52 is resolved |
Resolved for now |
Waiting for cqfn/astranaut#61 |
Resolved for now |
cqfn / astranaut cannot return custom nodes from the tree transformer, so we need to implement converter both from our tree to astranaut's nodes and vice versa. The development goes here For the test def bitwiseXor():
return (5 + 4) and the transformer rule we got an expected result of def bitwiseXor():
return (5 - 4) |
next steps:
|
Suggested implement syntax for specifying a specific occurrence of a node in a transformation rule: cqfn/astranaut#71 |
Waiting for cqfn/astranaut#81 |
Checker module migrated to a separate repository |
Use https://github.com/unified-ast/ast-generator tool in mutator
The text was updated successfully, but these errors were encountered: