87 lines
3.4 KiB
Rust
87 lines
3.4 KiB
Rust
use serde::{Deserialize, Serialize};
|
|
use tree_sitter::Node;
|
|
|
|
use crate::{
|
|
value_node::ValueNode, AbstractTree, Error, Identifier, Index, Map, Result, TypeDefinition,
|
|
Value, Yield,
|
|
};
|
|
|
|
use super::{function_call::FunctionCall, logic::Logic, math::Math};
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq, PartialOrd, Ord)]
|
|
pub enum Expression {
|
|
Value(ValueNode),
|
|
Identifier(Identifier),
|
|
Index(Box<Index>),
|
|
Math(Box<Math>),
|
|
Logic(Box<Logic>),
|
|
FunctionCall(Box<FunctionCall>),
|
|
Yield(Box<Yield>),
|
|
}
|
|
|
|
impl AbstractTree for Expression {
|
|
fn from_syntax_node(source: &str, node: Node, context: &Map) -> Result<Self> {
|
|
Error::expect_syntax_node(source, "expression", node)?;
|
|
|
|
let child = if node.child(0).unwrap().is_named() {
|
|
node.child(0).unwrap()
|
|
} else {
|
|
node.child(1).unwrap()
|
|
};
|
|
|
|
let expression = match child.kind() {
|
|
"value" => Expression::Value(ValueNode::from_syntax_node(source, child, context)?),
|
|
"identifier" => {
|
|
Expression::Identifier(Identifier::from_syntax_node(source, child, context)?)
|
|
}
|
|
"index" => {
|
|
Expression::Index(Box::new(Index::from_syntax_node(source, child, context)?))
|
|
}
|
|
"math" => Expression::Math(Box::new(Math::from_syntax_node(source, child, context)?)),
|
|
"logic" => {
|
|
Expression::Logic(Box::new(Logic::from_syntax_node(source, child, context)?))
|
|
}
|
|
"function_call" => Expression::FunctionCall(Box::new(FunctionCall::from_syntax_node(
|
|
source, child, context,
|
|
)?)),
|
|
"yield" => {
|
|
Expression::Yield(Box::new(Yield::from_syntax_node(source, child, context)?))
|
|
}
|
|
_ => {
|
|
return Err(Error::UnexpectedSyntaxNode {
|
|
expected: "value, identifier, index, math, logic, function_call or yield",
|
|
actual: child.kind(),
|
|
location: child.start_position(),
|
|
relevant_source: source[child.byte_range()].to_string(),
|
|
})
|
|
}
|
|
};
|
|
|
|
Ok(expression)
|
|
}
|
|
|
|
fn run(&self, source: &str, context: &Map) -> Result<Value> {
|
|
match self {
|
|
Expression::Value(value_node) => value_node.run(source, context),
|
|
Expression::Identifier(identifier) => identifier.run(source, context),
|
|
Expression::Math(math) => math.run(source, context),
|
|
Expression::Logic(logic) => logic.run(source, context),
|
|
Expression::FunctionCall(function_call) => function_call.run(source, context),
|
|
Expression::Index(index) => index.run(source, context),
|
|
Expression::Yield(r#yield) => r#yield.run(source, context),
|
|
}
|
|
}
|
|
|
|
fn expected_type(&self, context: &Map) -> Result<TypeDefinition> {
|
|
match self {
|
|
Expression::Value(value_node) => value_node.expected_type(context),
|
|
Expression::Identifier(identifier) => identifier.expected_type(context),
|
|
Expression::Math(math) => math.expected_type(context),
|
|
Expression::Logic(logic) => logic.expected_type(context),
|
|
Expression::FunctionCall(function_call) => function_call.expected_type(context),
|
|
Expression::Index(index) => index.expected_type(context),
|
|
Expression::Yield(r#yield) => r#yield.expected_type(context),
|
|
}
|
|
}
|
|
}
|