SerenityOS / jakt

The Jakt Programming Language
BSD 2-Clause "Simplified" License
2.82k stars 241 forks source link

selfhost: Dump type hints for `is` bindings #1522

Closed awesomekling closed 9 months ago

awesomekling commented 9 months ago

This kind of code now gets inlay type hints in Code:

if thing is Type(a, b) {
    ...
}

Meaning it shows up like:

if thing is Type(a: i32, b: String) {
    ...
}