a81b094441
Revert "Update install script and readmes to use tls v1.3 (#1481)"
This reverts commit 9b6b0b7fac
.
132 lines
3.9 KiB
Rust
132 lines
3.9 KiB
Rust
use super::*;
|
|
|
|
/// An expression. Note that the Just language grammar has both an `expression`
|
|
/// production of additions (`a + b`) and values, and a `value` production of
|
|
/// all other value types (for example strings, function calls, and
|
|
/// parenthetical groups).
|
|
///
|
|
/// The parser parses both values and expressions into `Expression`s.
|
|
#[derive(PartialEq, Debug, Clone)]
|
|
pub(crate) enum Expression<'src> {
|
|
/// `contents`
|
|
Backtick {
|
|
contents: String,
|
|
token: Token<'src>,
|
|
},
|
|
/// `name(arguments)`
|
|
Call { thunk: Thunk<'src> },
|
|
/// `lhs + rhs`
|
|
Concatenation {
|
|
lhs: Box<Expression<'src>>,
|
|
rhs: Box<Expression<'src>>,
|
|
},
|
|
/// `if lhs == rhs { then } else { otherwise }`
|
|
Conditional {
|
|
lhs: Box<Expression<'src>>,
|
|
rhs: Box<Expression<'src>>,
|
|
then: Box<Expression<'src>>,
|
|
otherwise: Box<Expression<'src>>,
|
|
operator: ConditionalOperator,
|
|
},
|
|
/// `(contents)`
|
|
Group { contents: Box<Expression<'src>> },
|
|
/// `lhs / rhs`
|
|
Join {
|
|
lhs: Option<Box<Expression<'src>>>,
|
|
rhs: Box<Expression<'src>>,
|
|
},
|
|
/// `"string_literal"` or `'string_literal'`
|
|
StringLiteral { string_literal: StringLiteral<'src> },
|
|
/// `variable`
|
|
Variable { name: Name<'src> },
|
|
}
|
|
|
|
impl<'src> Expression<'src> {
|
|
pub(crate) fn variables<'expression>(&'expression self) -> Variables<'expression, 'src> {
|
|
Variables::new(self)
|
|
}
|
|
}
|
|
|
|
impl<'src> Display for Expression<'src> {
|
|
fn fmt(&self, f: &mut Formatter) -> Result<(), fmt::Error> {
|
|
match self {
|
|
Expression::Backtick { token, .. } => write!(f, "{}", token.lexeme()),
|
|
Expression::Join { lhs: None, rhs } => write!(f, "/ {rhs}"),
|
|
Expression::Join {
|
|
lhs: Some(lhs),
|
|
rhs,
|
|
} => write!(f, "{lhs} / {rhs}"),
|
|
Expression::Concatenation { lhs, rhs } => write!(f, "{lhs} + {rhs}"),
|
|
Expression::Conditional {
|
|
lhs,
|
|
rhs,
|
|
then,
|
|
otherwise,
|
|
operator,
|
|
} => write!(
|
|
f,
|
|
"if {lhs} {operator} {rhs} {{ {then} }} else {{ {otherwise} }}"
|
|
),
|
|
Expression::StringLiteral { string_literal } => write!(f, "{string_literal}"),
|
|
Expression::Variable { name } => write!(f, "{}", name.lexeme()),
|
|
Expression::Call { thunk } => write!(f, "{thunk}"),
|
|
Expression::Group { contents } => write!(f, "({contents})"),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'src> Serialize for Expression<'src> {
|
|
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
|
|
where
|
|
S: Serializer,
|
|
{
|
|
match self {
|
|
Self::Backtick { contents, .. } => {
|
|
let mut seq = serializer.serialize_seq(None)?;
|
|
seq.serialize_element("evaluate")?;
|
|
seq.serialize_element(contents)?;
|
|
seq.end()
|
|
}
|
|
Self::Call { thunk } => thunk.serialize(serializer),
|
|
Self::Concatenation { lhs, rhs } => {
|
|
let mut seq = serializer.serialize_seq(None)?;
|
|
seq.serialize_element("concatenate")?;
|
|
seq.serialize_element(lhs)?;
|
|
seq.serialize_element(rhs)?;
|
|
seq.end()
|
|
}
|
|
Self::Join { lhs, rhs } => {
|
|
let mut seq = serializer.serialize_seq(None)?;
|
|
seq.serialize_element("join")?;
|
|
seq.serialize_element(lhs)?;
|
|
seq.serialize_element(rhs)?;
|
|
seq.end()
|
|
}
|
|
Self::Conditional {
|
|
lhs,
|
|
rhs,
|
|
then,
|
|
otherwise,
|
|
operator,
|
|
} => {
|
|
let mut seq = serializer.serialize_seq(None)?;
|
|
seq.serialize_element("if")?;
|
|
seq.serialize_element(&operator.to_string())?;
|
|
seq.serialize_element(lhs)?;
|
|
seq.serialize_element(rhs)?;
|
|
seq.serialize_element(then)?;
|
|
seq.serialize_element(otherwise)?;
|
|
seq.end()
|
|
}
|
|
Self::Group { contents } => contents.serialize(serializer),
|
|
Self::StringLiteral { string_literal } => string_literal.serialize(serializer),
|
|
Self::Variable { name } => {
|
|
let mut seq = serializer.serialize_seq(None)?;
|
|
seq.serialize_element("variable")?;
|
|
seq.serialize_element(name)?;
|
|
seq.end()
|
|
}
|
|
}
|
|
}
|
|
}
|