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
use super::attribute::*;
use crate::{
ast::*,
parser::{combinator::*, expression::*, types::*},
};
pub fn derive_clause(input: &str) -> ParseResult<DeriveClause> {
tuple((tag("DERIVE"), many1(derived_attr)))
.map(|(_derive, attributes)| DeriveClause { attributes })
.parse(input)
}
pub fn derived_attr(input: &str) -> ParseResult<DerivedAttribute> {
tuple((
attribute_decl,
char(':'),
parameter_type,
tag(":="),
expression,
char(';'),
))
.map(|(attr, _colon, ty, _equal, expr, _semicolon)| DerivedAttribute { attr, ty, expr })
.parse(input)
}
#[cfg(test)]
mod tests {
use nom::Finish;
#[test]
fn derive_clause() {
let (residual, (c, _remarks)) = super::derive_clause(
r#"
DERIVE
SELF\named_unit.dimensions : dimensional_exponents := dimensions_for_si_unit(SELF.name);
"#
.trim(),
)
.finish()
.unwrap();
assert_eq!(residual, "");
assert_eq!(c.attributes.len(), 1);
}
}