-
Notifications
You must be signed in to change notification settings - Fork 397
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(gnovm): charge gas for type checking the Go AST statically #3974
base: master
Are you sure you want to change the base?
fix(gnovm): charge gas for type checking the Go AST statically #3974
Conversation
🛠 PR Checks Summary🔴 Pending initial approval by a review team member, or review from tech-staff Manual Checks (for Reviewers):
Read More🤖 This bot helps streamline PR reviews by verifying automated checks and providing guidance for contributors and reviewers. ✅ Automated Checks (for Contributors):🟢 Maintainers must be able to edit this pull request (more info) ☑️ Contributor Actions:
☑️ Reviewer Actions:
📚 Resources:Debug
|
Typechecking the Go abstract syntax tree incurs a huge penalty as part of the GnoVM's functionality when starting up and before running a package, hence it is only natural to also charge a cost. At first the charges shall be naive and as we expend more thought and research, shall refine what and how much to charge.
6adc70b
to
1c96d70
Compare
0d27603
to
6109a7b
Compare
Codecov ReportAttention: Patch coverage is
📢 Thoughts on this report? Let us know! |
862bb12
to
21b669c
Compare
21b669c
to
3c43764
Compare
Typechecking the Go abstract syntax tree incurs a huge penalty as part of the GnoVM's functionality when starting up and before running a package, hence it is only natural to also charge a cost. At first the charges shall be naive and as we expend more thought and research, shall refine what and how much to charge.