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
use wast::parser::{self, Parse, Parser};

use crate::{Atom, Expr, SExpr, ValueType};

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Result {
    value_types: Vec<ValueType>,
}

impl Result {
    pub fn with_value_types(value_types: Vec<ValueType>) -> Self {
        Self { value_types }
    }
}

impl SExpr for Result {
    fn car(&self) -> String {
        "result".to_owned()
    }

    fn cdr(&self) -> Vec<Expr> {
        self.value_types
            .iter()
            .map(|v| Expr::Atom(Atom::new(v.to_string())))
            .collect()
    }
}

impl Parse<'_> for Result {
    fn parse(parser: Parser<'_>) -> parser::Result<Self> {
        parser.parse::<wast::kw::result>()?;

        let mut value_types = Vec::new();

        while !parser.is_empty() {
            value_types.push(parser.parse()?);
        }

        Ok(Self { value_types })
    }
}