Introduce SourceBinder

This commit is contained in:
Aleksey Kladov 2020-01-14 15:27:05 +01:00
parent c0661ce744
commit ccfe53376a
5 changed files with 217 additions and 101 deletions

View file

@ -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;