Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ tarpaulin-report.html
/docs/tmp_snippets
.vscode
.DS_Store
*PLAN*
182 changes: 179 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crates/fe/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::print_stdout, clippy::print_stderr)]

mod check;
mod tree;

Expand Down
1 change: 1 addition & 0 deletions crates/hir-analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ common.workspace = true
test-utils.workspace = true
hir.workspace = true
url.workspace = true
parser.workspace = true

[dev-dependencies]
ascii_tree = "0.1"
Expand Down
1 change: 1 addition & 0 deletions crates/hir-analysis/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ pub trait HirAnalysisDb: HirDb {}
#[salsa::db]
impl<T> HirAnalysisDb for T where T: HirDb {}

pub mod lookup;
pub mod name_resolution;
pub mod ty;

Expand Down
Loading