feat(hir): copy AST over to HIR (#316)

This commit is contained in:
Boshen 2023-04-25 19:19:36 +08:00 committed by GitHub
parent f194c84f0b
commit 2cd04811d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2937 additions and 4 deletions

1
.github/codecov.yml vendored
View file

@ -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

View file

@ -1,2 +1,4 @@
#![feature(let_chains)]
pub mod hir;
pub mod lower;