5 releases
0.1.2 | Apr 24, 2024 |
---|---|
0.1.1 | Apr 17, 2024 |
0.1.0 | Apr 9, 2024 |
0.0.1 | Sep 19, 2022 |
0.0.0 | Sep 15, 2022 |
#549 in Programming languages
3,088 downloads per month
Used in 4 crates
(2 directly)
140KB
2.5K
SLoC
reuse rustc_span for compiler_base.
note: [WIP] Do not use it.
lib.rs
:
Source positions and related helper functions.
Important concepts in this module include:
- the span, represented by
SpanData
and related types; - source code as represented by a
SourceMap
; and - interned strings, represented by
Symbol
s, with some common symbols available statically in the [sym
] module.
Unlike most compilers, the span contains not only the position in the source code, but also various other metadata,
such as the edition and macro hygiene. This metadata is stored in SyntaxContext
and ExpnData
.
Note
This API is completely unstable and subject to change.
Dependencies
~6–15MB
~211K SLoC