Merge pull request #131 from bicarlsen/feat/track_caller

This commit is contained in:
Marc-Stefan Cassola 2024-07-15 15:03:13 +01:00 committed by GitHub
commit 85376f8165
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,6 +8,7 @@ macro_rules! signal_filtered {
) => {
paste! {
$(#[$outer])*
#[track_caller]
pub fn [<signal_ $filter_name d>]<S, T>(
value: S,
ms: impl Into<MaybeSignal<f64>> + 'static,
@ -27,6 +28,7 @@ macro_rules! signal_filtered {
/// See
#[$simple_func_doc]
/// for how to use.
#[track_caller]
pub fn [<signal_ $filter_name d_with_options>]<S, T>(
value: S,
ms: impl Into<MaybeSignal<f64>> + 'static,