2024-08-09 01:59:09 +00:00
|
|
|
//! In-memory representation of a Dust program.
|
2024-08-07 14:03:33 +00:00
|
|
|
use std::{
|
2024-08-07 15:38:08 +00:00
|
|
|
collections::{HashMap, VecDeque},
|
2024-08-07 14:03:33 +00:00
|
|
|
fmt::{self, Display, Formatter},
|
|
|
|
};
|
2024-08-05 03:11:04 +00:00
|
|
|
|
2024-08-07 14:03:33 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2024-08-07 23:44:01 +00:00
|
|
|
use crate::{BuiltInFunction, Identifier, Span, Type, Value};
|
2024-08-07 14:03:33 +00:00
|
|
|
|
2024-08-09 01:59:09 +00:00
|
|
|
/// In-memory representation of a Dust program.
|
2024-08-07 15:38:08 +00:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)]
|
2024-08-07 23:03:50 +00:00
|
|
|
pub struct AbstractSyntaxTree {
|
2024-08-09 07:00:48 +00:00
|
|
|
pub nodes: VecDeque<Node<Statement>>,
|
2024-08-07 15:38:08 +00:00
|
|
|
}
|
|
|
|
|
2024-08-07 14:03:33 +00:00
|
|
|
#[derive(Debug, Clone, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)]
|
2024-08-09 07:00:48 +00:00
|
|
|
pub struct Node<T> {
|
|
|
|
pub inner: T,
|
2024-08-07 23:03:50 +00:00
|
|
|
pub position: Span,
|
2024-08-05 03:11:04 +00:00
|
|
|
}
|
|
|
|
|
2024-08-09 07:00:48 +00:00
|
|
|
impl<T> Node<T> {
|
|
|
|
pub fn new(inner: T, position: Span) -> Self {
|
|
|
|
Self { inner, position }
|
2024-08-05 03:11:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-09 07:00:48 +00:00
|
|
|
impl<T: Display> Display for Node<T> {
|
2024-08-07 14:03:33 +00:00
|
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
2024-08-09 07:00:48 +00:00
|
|
|
write!(f, "{}", self.inner)
|
2024-08-07 14:03:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)]
|
2024-08-07 23:03:50 +00:00
|
|
|
pub enum Statement {
|
2024-08-05 03:11:04 +00:00
|
|
|
// Top-level statements
|
2024-08-09 07:00:48 +00:00
|
|
|
Assign(Box<Node<Statement>>, Box<Node<Statement>>),
|
|
|
|
|
|
|
|
// Math expressions
|
|
|
|
Add(Box<Node<Statement>>, Box<Node<Statement>>),
|
|
|
|
Subtract(Box<Node<Statement>>, Box<Node<Statement>>),
|
|
|
|
Multiply(Box<Node<Statement>>, Box<Node<Statement>>),
|
2024-08-05 03:11:04 +00:00
|
|
|
|
2024-08-09 07:00:48 +00:00
|
|
|
// Function calls
|
2024-08-07 22:24:25 +00:00
|
|
|
BuiltInFunctionCall {
|
|
|
|
function: BuiltInFunction,
|
2024-08-09 07:00:48 +00:00
|
|
|
type_arguments: Option<Vec<Node<Statement>>>,
|
|
|
|
value_arguments: Option<Vec<Node<Statement>>>,
|
2024-08-07 22:24:25 +00:00
|
|
|
},
|
|
|
|
FunctionCall {
|
2024-08-09 07:00:48 +00:00
|
|
|
function: Box<Node<Statement>>,
|
|
|
|
type_arguments: Option<Vec<Node<Statement>>>,
|
|
|
|
value_arguments: Option<Vec<Node<Statement>>>,
|
2024-08-07 22:24:25 +00:00
|
|
|
},
|
2024-08-09 07:00:48 +00:00
|
|
|
|
|
|
|
// Comparison expressions
|
|
|
|
Comparison(
|
|
|
|
Box<Node<Statement>>,
|
|
|
|
Node<ComparisonOperator>,
|
|
|
|
Box<Node<Statement>>,
|
|
|
|
),
|
|
|
|
|
|
|
|
// Property access
|
|
|
|
PropertyAccess(Box<Node<Statement>>, Box<Node<Statement>>),
|
|
|
|
|
|
|
|
// Value collections
|
|
|
|
List(Vec<Node<Statement>>),
|
2024-08-05 03:11:04 +00:00
|
|
|
|
|
|
|
// Hard-coded values
|
|
|
|
Constant(Value),
|
|
|
|
Identifier(Identifier),
|
|
|
|
}
|
2024-08-07 14:03:33 +00:00
|
|
|
|
2024-08-07 23:03:50 +00:00
|
|
|
impl Statement {
|
2024-08-07 14:03:33 +00:00
|
|
|
pub fn expected_type(&self, variables: &HashMap<Identifier, Value>) -> Option<Type> {
|
|
|
|
match self {
|
2024-08-09 07:00:48 +00:00
|
|
|
Statement::Add(left, _) => left.inner.expected_type(variables),
|
2024-08-07 14:03:33 +00:00
|
|
|
Statement::Assign(_, _) => None,
|
2024-08-07 22:24:25 +00:00
|
|
|
Statement::BuiltInFunctionCall { function, .. } => function.expected_type(),
|
2024-08-09 07:00:48 +00:00
|
|
|
Statement::Comparison(_, _, _) => Some(Type::Boolean),
|
2024-08-07 14:03:33 +00:00
|
|
|
Statement::Constant(value) => Some(value.r#type(variables)),
|
2024-08-09 07:00:48 +00:00
|
|
|
Statement::FunctionCall { function, .. } => function.inner.expected_type(variables),
|
2024-08-07 14:03:33 +00:00
|
|
|
Statement::Identifier(identifier) => variables
|
|
|
|
.get(identifier)
|
|
|
|
.map(|value| value.r#type(variables)),
|
2024-08-09 07:00:48 +00:00
|
|
|
Statement::List(nodes) => nodes
|
|
|
|
.first()
|
|
|
|
.map(|node| node.inner.expected_type(variables))
|
|
|
|
.flatten(),
|
|
|
|
Statement::Multiply(left, _) => left.inner.expected_type(variables),
|
2024-08-07 14:03:33 +00:00
|
|
|
Statement::PropertyAccess(_, _) => None,
|
2024-08-09 07:00:48 +00:00
|
|
|
Statement::Subtract(left, _) => left.inner.expected_type(variables),
|
2024-08-07 14:03:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-07 23:03:50 +00:00
|
|
|
impl Display for Statement {
|
2024-08-07 14:03:33 +00:00
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
|
|
|
|
match self {
|
2024-08-07 14:41:27 +00:00
|
|
|
Statement::Assign(left, right) => write!(f, "{left} = {right}"),
|
|
|
|
Statement::Add(left, right) => write!(f, "{left} + {right}"),
|
2024-08-07 22:24:25 +00:00
|
|
|
Statement::BuiltInFunctionCall {
|
|
|
|
function,
|
|
|
|
type_arguments: type_parameters,
|
|
|
|
value_arguments: value_parameters,
|
|
|
|
} => {
|
|
|
|
write!(f, "{function}")?;
|
|
|
|
|
|
|
|
if let Some(type_parameters) = type_parameters {
|
|
|
|
write!(f, "<")?;
|
|
|
|
|
|
|
|
for (i, type_parameter) in type_parameters.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(f, ", ")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, "{type_parameter}")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, ">")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, "(")?;
|
|
|
|
|
|
|
|
if let Some(value_parameters) = value_parameters {
|
|
|
|
for (i, value_parameter) in value_parameters.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(f, ", ")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, "{value_parameter}")?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, ")")
|
|
|
|
}
|
2024-08-09 07:00:48 +00:00
|
|
|
Statement::Comparison(left, operator, right) => write!(f, "{left} {operator} {right}"),
|
|
|
|
Statement::Constant(value) => write!(f, "{value}"),
|
2024-08-07 22:24:25 +00:00
|
|
|
Statement::FunctionCall {
|
|
|
|
function,
|
|
|
|
type_arguments: type_parameters,
|
|
|
|
value_arguments: value_parameters,
|
|
|
|
} => {
|
|
|
|
write!(f, "{function}")?;
|
|
|
|
|
|
|
|
if let Some(type_parameters) = type_parameters {
|
|
|
|
write!(f, "<")?;
|
|
|
|
|
|
|
|
for (i, type_parameter) in type_parameters.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(f, ", ")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, "{type_parameter}")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, ">")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, "(")?;
|
|
|
|
|
|
|
|
if let Some(value_parameters) = value_parameters {
|
|
|
|
for (i, value_parameter) in value_parameters.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(f, ", ")?;
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, "{value_parameter}")?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
write!(f, ")")
|
|
|
|
}
|
2024-08-09 07:00:48 +00:00
|
|
|
Statement::Identifier(identifier) => write!(f, "{identifier}"),
|
2024-08-07 14:03:33 +00:00
|
|
|
Statement::List(nodes) => {
|
|
|
|
write!(f, "[")?;
|
|
|
|
for (i, node) in nodes.iter().enumerate() {
|
|
|
|
if i > 0 {
|
|
|
|
write!(f, ", ")?;
|
|
|
|
}
|
2024-08-07 14:41:27 +00:00
|
|
|
write!(f, "{node}")?;
|
2024-08-07 14:03:33 +00:00
|
|
|
}
|
|
|
|
write!(f, "]")
|
|
|
|
}
|
2024-08-07 14:41:27 +00:00
|
|
|
Statement::Multiply(left, right) => write!(f, "{left} * {right}"),
|
2024-08-09 07:00:48 +00:00
|
|
|
Statement::PropertyAccess(left, right) => write!(f, "{left}.{right}"),
|
2024-08-09 03:28:47 +00:00
|
|
|
Statement::Subtract(left, right) => write!(f, "{left} - {right}"),
|
2024-08-07 14:03:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-08-09 07:00:48 +00:00
|
|
|
|
|
|
|
#[derive(Debug, Clone, Eq, PartialEq, PartialOrd, Ord, Serialize, Deserialize)]
|
|
|
|
pub enum ComparisonOperator {
|
|
|
|
GreaterThan,
|
|
|
|
GreaterThanOrEqual,
|
|
|
|
LessThan,
|
|
|
|
LessThanOrEqual,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for ComparisonOperator {
|
|
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
|
|
|
match self {
|
|
|
|
ComparisonOperator::GreaterThan => write!(f, ">"),
|
|
|
|
ComparisonOperator::GreaterThanOrEqual => write!(f, ">="),
|
|
|
|
ComparisonOperator::LessThan => write!(f, "<"),
|
|
|
|
ComparisonOperator::LessThanOrEqual => write!(f, "<="),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|