mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 05:45:12 +00:00
Introduce SourceBinder
This commit is contained in:
parent
c0661ce744
commit
ccfe53376a
5 changed files with 217 additions and 101 deletions
|
@ -8,7 +8,7 @@
|
|||
#![recursion_limit = "512"]
|
||||
|
||||
macro_rules! impl_froms {
|
||||
($e:ident: $($v:ident $(($($sv:ident),*))?),*) => {
|
||||
($e:ident: $($v:ident $(($($sv:ident),*))?),*$(,)?) => {
|
||||
$(
|
||||
impl From<$v> for $e {
|
||||
fn from(it: $v) -> $e {
|
||||
|
@ -28,6 +28,7 @@ macro_rules! impl_froms {
|
|||
|
||||
pub mod db;
|
||||
pub mod source_analyzer;
|
||||
pub mod source_binder;
|
||||
|
||||
pub mod diagnostics;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue