Skip to content

Commit

Permalink
rename analyzer crate to analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
SpontanCombust committed Jan 18, 2024
1 parent 699252a commit 7e69f7d
Show file tree
Hide file tree
Showing 34 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/analyzer/Cargo.toml → crates/analysis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "witcherscript-analyzer"
name = "witcherscript-analysis"
description = "WitcherScript semantic analysis toolset"
version.workspace = true
edition.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion crates/lsp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors.workspace = true

[dependencies]
witcherscript = { path = "../core" }
witcherscript-analyzer = { path = "../analyzer" }
witcherscript-analysis = { path = "../analysis" }
witcherscript-project = { path = "../project" }
dashmap.workspace = true
tower-lsp = "0.20.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/lsp/src/providers/document_sync.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use std::{ops::DerefMut, borrow::Borrow};
use tower_lsp::lsp_types as lsp;
use witcherscript::{script_document::ScriptDocument, Script};
use witcherscript_analyzer::{diagnostics::{Diagnostic, DiagnosticBody}, jobs::syntax_analysis};
use witcherscript_analysis::{diagnostics::{Diagnostic, DiagnosticBody}, jobs::syntax_analysis};
use crate::Backend;


Expand Down

0 comments on commit 7e69f7d

Please sign in to comment.