-
Notifications
You must be signed in to change notification settings - Fork 58
feat(compiler): add a new known attribute based on Flavor and move the attr logic into iota_mode #9187
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
feat(compiler): add a new known attribute based on Flavor and move the attr logic into iota_mode #9187
Conversation
…e attr logic into iota_mode
|
The latest updates on your projects. Learn more about Vercel for GitHub. 6 Skipped Deployments
|
| // match self { | ||
| // Self::Attribute(a) => a.name(), | ||
| //} | ||
| unimplemented!() |
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.
Why this is unimplemented and the function below as well?
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.
Ah I see, you’re modifying it here
Dkwcs
left a comment
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.
LGTM
edd0007
into
vm-lang/aa-auth/8116-feature-branch
…e attr logic into iota_mode (#9187) # Description of change Added a generic FlavoredAttribute which can then allow us to define new attributes within the iota_mode compiler part. ## Links to any relevant issues Fixes #9186 ## How the change has been tested - [ ] Basic tests (linting, compilation, formatting, unit/integration tests) - [ ] Patch-specific tests (correctness, functionality coverage) - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] I have checked that new and existing unit tests pass locally with my changes
Description of change
Added a generic FlavoredAttribute which can then allow us to define new attributes within the iota_mode compiler part.
Links to any relevant issues
Fixes #9186
How the change has been tested