8b0b213cdd
Fixes 5125 Previously, a newline was always added, even if the parameter name was not preceded by any param attrs. Now a newline is only added if there were param attrs.
25 lines
477 B
Rust
25 lines
477 B
Rust
fn middle(
|
|
a: usize,
|
|
b: <u16 as intercom::type_system::ExternType<
|
|
intercom::type_system::AutomationTypeSystem,
|
|
>>::ForeignType,
|
|
c: bool,
|
|
) {
|
|
}
|
|
|
|
fn last(
|
|
a: usize,
|
|
b: <u16 as intercom::type_system::ExternType<
|
|
intercom::type_system::AutomationTypeSystem,
|
|
>>::ForeignType,
|
|
) {
|
|
}
|
|
|
|
fn first(
|
|
a: <u16 as intercom::type_system::ExternType<
|
|
intercom::type_system::AutomationTypeSystem,
|
|
>>::ForeignType,
|
|
b: usize,
|
|
) {
|
|
}
|