mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 06:41:48 +00:00
Set current working directory for procedural macros
This commit is contained in:
parent
e149a15edd
commit
6051318744
3 changed files with 28 additions and 0 deletions
|
@ -156,12 +156,18 @@ impl ProcMacro {
|
|||
attr: Option<&Subtree>,
|
||||
env: Vec<(String, String)>,
|
||||
) -> Result<Result<Subtree, PanicMessage>, ServerError> {
|
||||
let current_dir = env
|
||||
.iter()
|
||||
.find(|(name, _)| name == "CARGO_MANIFEST_DIR")
|
||||
.map(|(_, value)| value.clone());
|
||||
|
||||
let task = ExpandMacro {
|
||||
macro_body: FlatTree::new(subtree),
|
||||
macro_name: self.name.to_string(),
|
||||
attributes: attr.map(FlatTree::new),
|
||||
lib: self.dylib_path.to_path_buf().into(),
|
||||
env,
|
||||
current_dir,
|
||||
};
|
||||
|
||||
let request = msg::Request::ExpandMacro(task);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue