Home
last modified time | relevance | path

Searched full:proc_macro_srv (Results 1 – 7 of 7) sorted by relevance

/third_party/rust/rust/src/tools/rust-analyzer/.github/workflows/
Dautopublish.yaml48 cargo workspaces rename --from proc-macro-srv proc_macro_srv
/third_party/rust/rust/src/tools/rust-analyzer/crates/proc-macro-srv-cli/src/
Dmain.rs34 let mut srv = proc_macro_srv::ProcMacroSrv::default(); in run()
/third_party/rust/rust/src/tools/rust-analyzer/crates/rust-analyzer/src/cli/
Ddiagnostics.rs20 let with_proc_macro_server = if let Some(p) = &self.proc_macro_srv { in run()
Dflags.rs203 pub proc_macro_srv: Option<PathBuf>, field
/third_party/rust/rust/src/tools/rust-analyzer/docs/dev/
Darchitecture.md261 ### `crates/mbe`, `crates/tt`, `crates/proc_macro_api`, `crates/proc_macro_srv`
271 … argument `--proc-macro` to `rust-analyzer` binary to start a separate process (`proc_macro_srv`).
/third_party/rust/rust/src/tools/rust-analyzer/crates/rust-analyzer/src/
Dconfig.rs1131 pub fn proc_macro_srv(&self) -> Option<AbsPathBuf> { in proc_macro_srv() method
2539 assert_eq!(config.proc_macro_srv(), None); in proc_macro_srv_null()
2551 assert_eq!(config.proc_macro_srv(), Some(AbsPathBuf::try_from(project_root()).unwrap())); in proc_macro_srv_abs()
2564 config.proc_macro_srv(), in proc_macro_srv_rel()
Dreload.rs445 let path = match self.config.proc_macro_srv() { in switch_workspaces()