diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-02-11 08:55:19 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:35:20 +0100 |
| commit | 60f0342b697cdddbab9c0e8c6d772bc7aab9de38 (patch) | |
| tree | 5bbb73e299f416f4c10adf329704b734379caa41 /rtic-macros/src/lib.rs | |
| parent | 1cda61fbda205920517f7b63af90c97c38ff9af6 (diff) | |
Break out core specific codegen to bindings
Diffstat (limited to 'rtic-macros/src/lib.rs')
| -rw-r--r-- | rtic-macros/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rtic-macros/src/lib.rs b/rtic-macros/src/lib.rs index 3ac2701..cd2a924 100644 --- a/rtic-macros/src/lib.rs +++ b/rtic-macros/src/lib.rs @@ -8,7 +8,6 @@ use proc_macro::TokenStream; use std::{env, fs, path::Path}; mod analyze; -mod bindings; mod check; mod codegen; mod syntax; @@ -38,7 +37,7 @@ pub fn app(args: TokenStream, input: TokenStream) -> TokenStream { Ok(x) => x, }; - if let Err(e) = check::app(&app) { + if let Err(e) = check::app(&app, &analysis) { return e.to_compile_error().into(); } |
