diff options
author | 2023-01-03 15:10:59 +0100 | |
---|---|---|
committer | 2023-03-01 00:31:04 +0100 | |
commit | f8352122a301c30db7c7851ebf50ad1608ebdad3 (patch) | |
tree | 54f836f8d055ea8b8bef0c1b7c6a59794b99fc3e /macros/src/syntax/parse/hardware_task.rs | |
parent | d7ed7a8b9f78344f6855fa1c2655ae0d85e44068 (diff) | |
download | rtic-f8352122a301c30db7c7851ebf50ad1608ebdad3.tar.gz rtic-f8352122a301c30db7c7851ebf50ad1608ebdad3.tar.zst rtic-f8352122a301c30db7c7851ebf50ad1608ebdad3.zip |
Min codegen
Diffstat (limited to 'macros/src/syntax/parse/hardware_task.rs')
-rw-r--r-- | macros/src/syntax/parse/hardware_task.rs | 44 |
1 files changed, 20 insertions, 24 deletions
diff --git a/macros/src/syntax/parse/hardware_task.rs b/macros/src/syntax/parse/hardware_task.rs index 304bfcd3..ff94bc51 100644 --- a/macros/src/syntax/parse/hardware_task.rs +++ b/macros/src/syntax/parse/hardware_task.rs @@ -23,19 +23,17 @@ impl HardwareTask { } if valid_signature { - if let Some((context, Ok(rest))) = util::parse_inputs(item.sig.inputs, &name) { - if rest.is_empty() { - let FilterAttrs { cfgs, attrs, .. } = util::filter_attributes(item.attrs); + if let Some(context) = util::parse_inputs(item.sig.inputs, &name) { + let FilterAttrs { cfgs, attrs, .. } = util::filter_attributes(item.attrs); - return Ok(HardwareTask { - args, - cfgs, - attrs, - context, - stmts: item.block.stmts, - is_extern: false, - }); - } + return Ok(HardwareTask { + args, + cfgs, + attrs, + context, + stmts: item.block.stmts, + is_extern: false, + }); } } @@ -69,19 +67,17 @@ impl HardwareTask { } if valid_signature { - if let Some((context, Ok(rest))) = util::parse_inputs(item.sig.inputs, &name) { - if rest.is_empty() { - let FilterAttrs { cfgs, attrs, .. } = util::filter_attributes(item.attrs); + if let Some(context) = util::parse_inputs(item.sig.inputs, &name) { + let FilterAttrs { cfgs, attrs, .. } = util::filter_attributes(item.attrs); - return Ok(HardwareTask { - args, - cfgs, - attrs, - context, - stmts: Vec::<Stmt>::new(), - is_extern: true, - }); - } + return Ok(HardwareTask { + args, + cfgs, + attrs, + context, + stmts: Vec::<Stmt>::new(), + is_extern: true, + }); } } |