mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-07-23 20:55:02 +00:00
feat: support query of cross-module references (#42)
* feat: support cross-module references by wild-card import * feat: support cross-module references by ident import * feat: support cross-module references by alias import * docs: update readme * dev: remove two debug printing
This commit is contained in:
parent
fe25933d0e
commit
5fa4f8f94f
19 changed files with 360 additions and 136 deletions
|
@ -140,10 +140,10 @@ fn inlay_hint(
|
|||
Value::Func(f) => Some(f),
|
||||
_ => None,
|
||||
})?;
|
||||
log::info!("got function {func:?}");
|
||||
log::debug!("got function {func:?}");
|
||||
|
||||
let call_info = analyze_call(func, args)?;
|
||||
log::info!("got call_info {call_info:?}");
|
||||
log::debug!("got call_info {call_info:?}");
|
||||
|
||||
let check_single_pos_arg = || {
|
||||
let mut pos = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue