mirror of
https://github.com/danbulant/oxc
synced 2026-05-21 21:29:01 +00:00
feat(hir): copy AST over to HIR (#316)
This commit is contained in:
parent
f194c84f0b
commit
2cd04811d1
3 changed files with 2937 additions and 4 deletions
1
.github/codecov.yml
vendored
1
.github/codecov.yml
vendored
|
|
@ -8,6 +8,7 @@ ignore:
|
|||
- "**/main.rs"
|
||||
- "**/examples"
|
||||
- "tasks"
|
||||
- "crates/oxc_hir"
|
||||
- "crates/oxc_wasm" # Remove this once wasm is completed
|
||||
- "crates/oxc_parser/fuzz"
|
||||
- "crates/oxc_diagnostics"
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,2 +1,4 @@
|
|||
#![feature(let_chains)]
|
||||
|
||||
pub mod hir;
|
||||
pub mod lower;
|
||||
|
|
|
|||
Loading…
Reference in a new issue