1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
use super::scope::Scope;
use super::WriteValue;
use std::borrow::Borrow;
use std::fmt;
use fluent_syntax::ast;
use crate::memoizer::MemoizerKind;
use crate::resolver::{ResolveValue, ResolverError};
use crate::resource::FluentResource;
use crate::types::FluentValue;
impl<'p> WriteValue for ast::Expression<&'p str> {
fn write<'scope, 'errors, W, R, M>(
&'scope self,
w: &mut W,
scope: &mut Scope<'scope, 'errors, R, M>,
) -> fmt::Result
where
W: fmt::Write,
R: Borrow<FluentResource>,
M: MemoizerKind,
{
match self {
Self::Inline(exp) => exp.write(w, scope),
Self::Select { selector, variants } => {
let selector = selector.resolve(scope);
match selector {
FluentValue::String(_) | FluentValue::Number(_) => {
for variant in variants {
let key = match variant.key {
ast::VariantKey::Identifier { name } => name.into(),
ast::VariantKey::NumberLiteral { value } => {
FluentValue::try_number(value)
}
};
if key.matches(&selector, scope) {
return variant.value.write(w, scope);
}
}
}
_ => {}
}
for variant in variants {
if variant.default {
return variant.value.write(w, scope);
}
}
scope.add_error(ResolverError::MissingDefault);
Ok(())
}
}
}
fn write_error<W>(&self, w: &mut W) -> fmt::Result
where
W: fmt::Write,
{
match self {
Self::Inline(exp) => exp.write_error(w),
Self::Select { .. } => unreachable!(),
}
}
}
|