Rename ra_proc_macro_srv -> proc_macro_srv

This commit is contained in:
Pavan Kumar Sunkara 2020-08-13 02:57:26 +02:00
parent f277ec27ac
commit 349e6c62ad
22 changed files with 10 additions and 11 deletions

View file

@ -52,7 +52,7 @@ ra_ssr = { path = "../ra_ssr" }
hir = { path = "../ra_hir", package = "ra_hir" }
hir_def = { path = "../ra_hir_def", package = "ra_hir_def" }
hir_ty = { path = "../ra_hir_ty", package = "ra_hir_ty" }
ra_proc_macro_srv = { path = "../ra_proc_macro_srv" }
proc_macro_srv = { path = "../proc_macro_srv" }
[target.'cfg(windows)'.dependencies]
winapi = "0.3.8"

View file

@ -30,7 +30,7 @@ fn try_main() -> Result<()> {
let args = args::Args::parse()?;
match args.command {
args::Command::RunServer => run_server()?,
args::Command::ProcMacro => ra_proc_macro_srv::cli::run()?,
args::Command::ProcMacro => proc_macro_srv::cli::run()?,
args::Command::Parse { no_dump } => cli::parse(no_dump)?,
args::Command::Symbols => cli::symbols()?,

View file

@ -176,7 +176,7 @@ impl GlobalState {
Ok(it) => it,
Err(err) => {
log::error!(
"Failed to run ra_proc_macro_srv from path {}, error: {:?}",
"Failed to run proc_macro_srv from path {}, error: {:?}",
path.display(),
err
);