We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f3d848 commit d928563Copy full SHA for d928563
fluent-bundle/src/resolver/pattern.rs
@@ -12,10 +12,10 @@ use crate::types::FluentValue;
12
13
const MAX_PLACEABLES: u8 = 100;
14
15
-pub fn write_pattern<'bundle, W, R, M>(
+pub fn write_pattern<'bundle, 'other, W, R, M>(
16
pattern: &'bundle ast::Pattern<&'bundle str>,
17
w: &mut W,
18
- scope: &mut Scope<'bundle, '_, R, M>,
+ scope: &mut Scope<'bundle, 'other, R, M>,
19
) -> fmt::Result
20
where
21
W: fmt::Write,
@@ -66,9 +66,9 @@ where
66
Ok(())
67
}
68
69
-pub fn resolve_pattern<'bundle, R, M>(
+pub fn resolve_pattern<'bundle, 'other, R, M>(
70
71
72
) -> FluentValue<'bundle>
73
74
R: Borrow<FluentResource>,
0 commit comments