162 releases

new 0.0.211 Apr 15, 2024
0.0.207 Mar 25, 2024
0.0.190 Dec 18, 2023
0.0.187 Nov 27, 2023
0.0.26 Nov 30, 2020

#49 in Programming languages

Download history 825/week @ 2023-12-23 1230/week @ 2023-12-30 2068/week @ 2024-01-06 2197/week @ 2024-01-13 1776/week @ 2024-01-20 1657/week @ 2024-01-27 1759/week @ 2024-02-03 1385/week @ 2024-02-10 1757/week @ 2024-02-17 3697/week @ 2024-02-24 1843/week @ 2024-03-02 1891/week @ 2024-03-09 1998/week @ 2024-03-16 2026/week @ 2024-03-23 1833/week @ 2024-03-30 1818/week @ 2024-04-06

7,895 downloads per month
Used in 21 crates (14 directly)

MIT/Apache

500KB
12K SLoC

HIR (previously known as descriptors) provides a high-level object oriented access to Rust code.

The principal difference between HIR and syntax trees is that HIR is bound to a particular crate instance. That is, it has cfg flags and features applied. So, the relation between syntax and HIR is many-to-one.

HIR is the public API of the all of the compiler logic above syntax trees. It is written in "OO" style. Each type is self contained (as in, it knows its parents and full context). It should be "clean code".

hir_* crates are the implementation of the compiler logic. They are written in "ECS" style, with relatively little abstractions. Many types are not self-contained, and explicitly use local indexes, arenas, etc.

hir is what insulates the "we don't know how to actually write an incremental compiler" from the ide with completions, hovers, etc. It is a (soft, internal) boundary: https://www.tedinski.com/2018/02/06/system-boundaries.html.

Dependencies

~13–23MB
~327K SLoC