hcl_edit/expr/
conditional.rs1use crate::expr::Expression;
2use crate::Decor;
3use std::ops::Range;
4
5#[derive(Debug, Clone, Eq)]
8pub struct Conditional {
9 pub cond_expr: Expression,
11 pub true_expr: Expression,
13 pub false_expr: Expression,
15
16 decor: Decor,
17 span: Option<Range<usize>>,
18}
19
20impl Conditional {
21 pub fn new(
24 cond_expr: impl Into<Expression>,
25 true_expr: impl Into<Expression>,
26 false_expr: impl Into<Expression>,
27 ) -> Conditional {
28 Conditional {
29 cond_expr: cond_expr.into(),
30 true_expr: true_expr.into(),
31 false_expr: false_expr.into(),
32 decor: Decor::default(),
33 span: None,
34 }
35 }
36
37 pub(crate) fn despan(&mut self, input: &str) {
38 self.decor.despan(input);
39 self.cond_expr.despan(input);
40 self.true_expr.despan(input);
41 self.false_expr.despan(input);
42 }
43}
44
45impl PartialEq for Conditional {
46 fn eq(&self, other: &Self) -> bool {
47 self.cond_expr == other.cond_expr
48 && self.true_expr == other.true_expr
49 && self.false_expr == other.false_expr
50 }
51}
52
53decorate_impl!(Conditional);
54span_impl!(Conditional);