Skip to content
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: improvements for type checker (current limitations) #40

Open
leonidas1712 opened this issue Apr 11, 2024 · 0 comments
Open

feat: improvements for type checker (current limitations) #40

leonidas1712 opened this issue Apr 11, 2024 · 0 comments

Comments

@leonidas1712
Copy link
Contributor

  • Programs like let x = {}; , let x = { 2; } where assigned to blk with no last expr, should either be rejected or accepted but runtime must change to allow this (assignment to unit is allowed in Rust)
  • Currently if blk decls have any errors, those are thrown first without checking last expr because last expr might depend on decls.
    e.g
let x : int = true;
let y = 20;
{
    let y : bool = 20;
}
x + false

x+false is the last expr, add is not allowed for bool but type checker won't throw this until prev errors are fixed.

  • Need more advanced control flow analysis to see what the last expr depends on (probably after 4215 over)
@leonidas1712 leonidas1712 changed the title Improvements for type checker feat: improvements for type checker (current limitations) Apr 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant