You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(swc-angular-plugin): make lifetime explicit in parse_query_prop_info return type
Rust CI is failing to build jscutlery#802. The function
`parse_query_prop_info` returned `AngularPropInfo` with an
elided lifetime, while the input `&ClassProp` provided the
borrow. This inconsistency triggered the lint.
Updated the return type to `AngularPropInfo<'_>` to explicitly
tie the lifetime of the returned value to the input borrow,
removing the warning and unifying local and CI builds.
This makes the lifetime contract explicit.
0 commit comments