1
0
dust/dust-lang/src/parser/mod.rs

822 lines
31 KiB
Rust
Raw Normal View History

2024-06-20 20:36:16 +00:00
#[cfg(test)]
mod tests;
use std::{cell::RefCell, collections::HashMap};
use chumsky::{input::SpannedInput, pratt::*, prelude::*};
use crate::{
abstract_tree::*,
error::DustError,
identifier::Identifier,
2024-06-20 23:25:46 +00:00
lexer::{Keyword, Symbol, Token},
2024-06-20 20:36:16 +00:00
};
2024-06-20 22:41:07 +00:00
use self::{
2024-06-22 23:44:33 +00:00
built_in_function::BuiltInFunctionCall,
2024-06-20 22:41:07 +00:00
enum_declaration::EnumVariant,
type_constructor::{RawTypeConstructor, TypeInvokationConstructor},
};
2024-06-20 20:36:16 +00:00
pub type ParserInput<'src> =
SpannedInput<Token<'src>, SimpleSpan, &'src [(Token<'src>, SimpleSpan)]>;
pub type ParserExtra<'src> = extra::Err<Rich<'src, Token<'src>, SimpleSpan>>;
pub fn parse<'src>(
tokens: &'src [(Token<'src>, SimpleSpan)],
) -> Result<AbstractTree, Vec<DustError>> {
2024-06-22 15:44:09 +00:00
parser(false)
2024-06-20 20:36:16 +00:00
.parse(tokens.spanned((tokens.len()..tokens.len()).into()))
.into_result()
.map_err(|errors| {
errors
.into_iter()
.map(|error| DustError::from(error))
.collect::<Vec<DustError>>()
2024-06-22 15:44:09 +00:00
})
2024-06-20 20:36:16 +00:00
}
pub fn parser<'src>(
allow_built_ins: bool,
2024-06-22 15:44:09 +00:00
) -> impl Parser<'src, ParserInput<'src>, AbstractTree, ParserExtra<'src>> {
2024-06-20 20:36:16 +00:00
let comment = select_ref! {
Token::Comment(_) => {}
};
let identifiers: RefCell<HashMap<&str, Identifier>> = RefCell::new(HashMap::new());
let identifier = select! {
Token::Identifier(text) => {
let mut identifiers = identifiers.borrow_mut();
if let Some(identifier) = identifiers.get(&text) {
identifier.clone()
} else {
let new = Identifier::new(text);
identifiers.insert(text, new.clone());
new
}
}
};
let positioned_identifier = identifier
.clone()
.map_with(|identifier, state| identifier.with_position(state.span()));
let basic_value = select! {
Token::Boolean(boolean) => ValueNode::Boolean(boolean),
Token::Float(float) => ValueNode::Float(float),
Token::Integer(integer) => ValueNode::Integer(integer),
Token::String(text) => ValueNode::String(text.to_string()),
}
.map_with(|value, state| Expression::Value(value.with_position(state.span())));
let raw_integer = select! {
Token::Integer(integer) => integer
};
let type_constructor = recursive(|type_constructor| {
let primitive_type = choice((
2024-06-20 22:41:07 +00:00
just(Token::Keyword(Keyword::Any)).to(RawTypeConstructor::Any),
just(Token::Keyword(Keyword::Bool)).to(RawTypeConstructor::Boolean),
just(Token::Keyword(Keyword::Float)).to(RawTypeConstructor::Float),
just(Token::Keyword(Keyword::Int)).to(RawTypeConstructor::Integer),
just(Token::Keyword(Keyword::Range)).to(RawTypeConstructor::Range),
just(Token::Keyword(Keyword::Str)).to(RawTypeConstructor::String),
2024-06-20 20:36:16 +00:00
))
2024-06-20 22:41:07 +00:00
.map_with(|raw_constructor, state| {
TypeConstructor::Raw(raw_constructor.with_position(state.span()))
});
2024-06-20 20:36:16 +00:00
let function_type = just(Token::Keyword(Keyword::Fn))
.ignore_then(
positioned_identifier
.clone()
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.at_least(1)
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Pipe)),
just(Token::Symbol(Symbol::Pipe)),
2024-06-20 20:36:16 +00:00
)
.or_not(),
)
.then(
2024-06-24 02:39:33 +00:00
positioned_identifier
2024-06-20 20:36:16 +00:00
.clone()
2024-06-24 02:39:33 +00:00
.then_ignore(just(Token::Symbol(Symbol::Colon)))
.then(type_constructor.clone())
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::ParenOpen)),
just(Token::Symbol(Symbol::ParenClose)),
2024-06-20 20:36:16 +00:00
),
)
2024-06-22 04:58:30 +00:00
.then(
just(Token::Symbol(Symbol::SkinnyArrow))
.ignore_then(type_constructor.clone())
.or_not(),
)
2024-06-20 20:36:16 +00:00
.map_with(
2024-06-24 02:39:33 +00:00
|((type_parameters, value_parameters), return_type): (
(
Option<Vec<WithPosition<Identifier>>>,
Vec<(WithPosition<Identifier>, TypeConstructor)>,
),
Option<TypeConstructor>,
),
state| {
let value_parameters = if value_parameters.is_empty() {
None
} else {
Some(value_parameters)
};
2024-06-20 20:36:16 +00:00
TypeConstructor::Function(
FunctionTypeConstructor {
type_parameters,
value_parameters,
2024-06-22 04:58:30 +00:00
return_type: return_type.map(|r#type| Box::new(r#type)),
2024-06-20 20:36:16 +00:00
}
.with_position(state.span()),
)
},
);
let list_type = type_constructor
.clone()
2024-06-20 23:25:46 +00:00
.then_ignore(just(Token::Symbol(Symbol::Semicolon)))
2024-06-20 20:36:16 +00:00
.then(raw_integer.clone())
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::SquareOpen)),
just(Token::Symbol(Symbol::SquareClose)),
2024-06-20 20:36:16 +00:00
)
.map_with(|(item_type, length), state| {
TypeConstructor::List(
ListTypeConstructor {
length: length as usize,
item_type: Box::new(item_type),
}
.with_position(state.span()),
)
});
let list_of_type = type_constructor
.clone()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::SquareOpen)),
just(Token::Symbol(Symbol::SquareClose)),
2024-06-20 20:36:16 +00:00
)
.map_with(|item_type, state| {
TypeConstructor::ListOf(Box::new(item_type).with_position(state.span()))
});
let type_invokation = positioned_identifier
.clone()
.then(
type_constructor
.clone()
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.at_least(1)
.allow_trailing()
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::ParenOpen)),
just(Token::Symbol(Symbol::ParenClose)),
2024-06-20 20:36:16 +00:00
)
.or_not(),
)
.map(|(identifier, type_arguments)| {
TypeConstructor::Invokation(TypeInvokationConstructor {
identifier,
type_arguments,
})
});
2024-06-24 08:02:44 +00:00
let map_type = positioned_identifier
.clone()
.then_ignore(just(Token::Symbol(Symbol::Colon)))
.then(type_constructor.clone())
.separated_by(just(Token::Symbol(Symbol::Comma)))
.collect()
.delimited_by(
just(Token::Symbol(Symbol::CurlyOpen)),
just(Token::Symbol(Symbol::CurlyClose)),
)
.map_with(
|fields: Vec<(WithPosition<Identifier>, TypeConstructor)>, state| {
TypeConstructor::Map(fields.with_position(state.span()))
},
);
2024-06-20 20:36:16 +00:00
choice((
2024-06-24 08:02:44 +00:00
map_type,
2024-06-20 20:36:16 +00:00
type_invokation,
function_type,
list_type,
list_of_type,
primitive_type,
))
});
let type_specification =
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Colon)).ignore_then(type_constructor.clone());
2024-06-20 20:36:16 +00:00
let statement = recursive(|statement| {
let allow_built_ins = allow_built_ins.clone();
let block = statement
.clone()
.repeated()
.at_least(1)
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::CurlyOpen)),
just(Token::Symbol(Symbol::CurlyClose)),
2024-06-20 20:36:16 +00:00
)
.map_with(|statements, state| Block::new(statements).with_position(state.span()));
let expression = recursive(|expression| {
let allow_built_ins = allow_built_ins.clone();
let identifier_expression = identifier.clone().map_with(|identifier, state| {
Expression::Identifier(identifier.with_position(state.span()))
});
let range = raw_integer
.clone()
2024-06-20 23:25:46 +00:00
.then_ignore(just(Token::Symbol(Symbol::DoubleDot)))
2024-06-20 20:36:16 +00:00
.then(raw_integer)
.map_with(|(start, end), state| {
Expression::Value(ValueNode::Range(start..end).with_position(state.span()))
});
let list = expression
.clone()
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.allow_trailing()
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::SquareOpen)),
just(Token::Symbol(Symbol::SquareClose)),
2024-06-20 20:36:16 +00:00
)
.map_with(|list, state| {
Expression::Value(ValueNode::List(list).with_position(state.span()))
});
let map_fields = identifier
.clone()
.then(type_specification.clone().or_not())
2024-06-20 23:25:46 +00:00
.then_ignore(just(Token::Symbol(Symbol::Equal)))
2024-06-20 20:36:16 +00:00
.then(expression.clone())
.map(|((identifier, r#type), expression)| (identifier, r#type, expression));
let map = map_fields
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)).or_not())
2024-06-20 20:36:16 +00:00
.allow_trailing()
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::CurlyOpen)),
just(Token::Symbol(Symbol::CurlyClose)),
2024-06-20 20:36:16 +00:00
)
.map_with(|map_assigment_list, state| {
Expression::Value(
ValueNode::Map(map_assigment_list).with_position(state.span()),
)
});
let function = just(Token::Keyword(Keyword::Fn))
.ignore_then(
identifier
.clone()
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.at_least(1)
.allow_trailing()
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Pipe)),
just(Token::Symbol(Symbol::Pipe)),
2024-06-20 20:36:16 +00:00
)
.or_not(),
)
.then(
identifier
.clone()
2024-06-20 23:25:46 +00:00
.then_ignore(just(Token::Symbol(Symbol::Colon)))
2024-06-20 20:36:16 +00:00
.then(type_constructor.clone())
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.allow_trailing()
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::ParenOpen)),
just(Token::Symbol(Symbol::ParenClose)),
2024-06-20 20:36:16 +00:00
),
)
2024-06-22 04:58:30 +00:00
.then(
just(Token::Symbol(Symbol::SkinnyArrow))
.ignore_then(type_constructor.clone())
.or_not(),
)
2024-06-20 20:36:16 +00:00
.then(block.clone())
.map_with(
2024-06-24 02:39:33 +00:00
|(((type_parameters, value_parameters), return_type), body): (
(
(Option<Vec<Identifier>>, Vec<(Identifier, TypeConstructor)>),
Option<TypeConstructor>,
),
WithPosition<Block>,
),
state| {
let value_parameters = if value_parameters.is_empty() {
None
} else {
Some(value_parameters)
};
2024-06-20 20:36:16 +00:00
Expression::Value(
2024-06-22 17:55:43 +00:00
ValueNode::function(
2024-06-20 20:36:16 +00:00
type_parameters,
value_parameters,
return_type,
body,
2024-06-22 17:55:43 +00:00
)
2024-06-20 20:36:16 +00:00
.with_position(state.span()),
)
},
);
let enum_instance = positioned_identifier
.clone()
2024-06-20 23:25:46 +00:00
.then_ignore(just(Token::Symbol(Symbol::DoubleColon)))
2024-06-20 20:36:16 +00:00
.then(positioned_identifier.clone())
.then(
expression
.clone()
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::ParenOpen)),
just(Token::Symbol(Symbol::ParenClose)),
2024-06-20 20:36:16 +00:00
)
.or_not(),
)
.map_with(|((type_name, variant), content), state| {
Expression::Value(
ValueNode::EnumInstance {
type_name,
variant,
content,
}
.with_position(state.span()),
)
});
2024-06-22 15:44:09 +00:00
let _built_in_function = |keyword| {
just(Token::Keyword(keyword)).delimited_by(
just(Token::Symbol(Symbol::DoubleUnderscore)),
just(Token::Symbol(Symbol::DoubleUnderscore)),
)
};
2024-06-20 20:36:16 +00:00
let built_in_function_call = choice((
2024-06-22 15:44:09 +00:00
_built_in_function(Keyword::Length)
2024-06-20 20:36:16 +00:00
.ignore_then(expression.clone())
.map_with(|argument, state| {
2024-06-22 23:44:33 +00:00
Expression::BuiltIn(
BuiltInFunctionCall::length(argument).with_position(state.span()),
2024-06-20 20:36:16 +00:00
)
}),
2024-06-22 15:44:09 +00:00
_built_in_function(Keyword::ReadFile)
2024-06-20 20:36:16 +00:00
.ignore_then(expression.clone())
.map_with(|argument, state| {
2024-06-22 23:44:33 +00:00
Expression::BuiltIn(
BuiltInFunctionCall::read_file(argument).with_position(state.span()),
2024-06-20 20:36:16 +00:00
)
}),
2024-06-22 15:44:09 +00:00
_built_in_function(Keyword::ReadLine).map_with(|_, state| {
2024-06-22 23:44:33 +00:00
Expression::BuiltIn(
BuiltInFunctionCall::read_line().with_position(state.span()),
2024-06-20 20:36:16 +00:00
)
}),
2024-06-22 15:44:09 +00:00
_built_in_function(Keyword::Sleep)
2024-06-20 20:36:16 +00:00
.ignore_then(expression.clone())
.map_with(|argument, state| {
2024-06-22 23:44:33 +00:00
Expression::BuiltIn(
BuiltInFunctionCall::sleep(argument).with_position(state.span()),
2024-06-20 20:36:16 +00:00
)
}),
2024-06-22 15:44:09 +00:00
_built_in_function(Keyword::WriteLine)
2024-06-20 20:36:16 +00:00
.ignore_then(expression.clone())
.map_with(|argument, state| {
2024-06-22 23:44:33 +00:00
Expression::BuiltIn(
BuiltInFunctionCall::write_line(argument).with_position(state.span()),
2024-06-20 20:36:16 +00:00
)
}),
2024-06-22 15:44:09 +00:00
_built_in_function(Keyword::JsonParse)
2024-06-20 20:36:16 +00:00
.ignore_then(type_constructor.clone())
.then(expression.clone())
.map_with(|(constructor, argument), state| {
2024-06-22 23:44:33 +00:00
Expression::BuiltIn(
BuiltInFunctionCall::json_parse(constructor, argument)
2024-06-20 20:36:16 +00:00
.with_position(state.span()),
)
}),
))
2024-06-22 15:44:09 +00:00
.validate(move |expression, state, emitter| {
if !allow_built_ins {
emitter.emit(Rich::custom(
2024-06-20 20:36:16 +00:00
state.span(),
"Built-in function calls can only be used by the standard library.",
))
}
2024-06-22 15:44:09 +00:00
expression
2024-06-20 20:36:16 +00:00
});
let turbofish = type_constructor
.clone()
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.at_least(1)
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::ParenOpen)),
just(Token::Symbol(Symbol::ParenClose)),
2024-06-20 20:36:16 +00:00
)
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::DoubleColon)),
just(Token::Symbol(Symbol::DoubleColon)),
2024-06-20 20:36:16 +00:00
);
let atom = choice((
enum_instance.clone(),
range.clone(),
function.clone(),
list.clone(),
map.clone(),
basic_value.clone(),
identifier_expression.clone(),
expression.clone().delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::ParenOpen)),
just(Token::Symbol(Symbol::ParenClose)),
2024-06-20 20:36:16 +00:00
),
));
let logic_math_indexes_as_and_function_calls = atom.pratt((
// Logic
prefix(
2,
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Exclamation)),
2024-06-20 20:36:16 +00:00
|_, expression, span| {
Expression::Logic(Box::new(Logic::Not(expression)).with_position(span))
},
),
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::DoubleEqual)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Logic(Box::new(Logic::Equal(left, right)).with_position(span))
},
),
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::NotEqual)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Logic(
Box::new(Logic::NotEqual(left, right)).with_position(span),
)
},
),
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Greater)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Logic(Box::new(Logic::Greater(left, right)).with_position(span))
},
),
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Less)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Logic(Box::new(Logic::Less(left, right)).with_position(span))
},
),
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::GreaterOrEqual)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Logic(
Box::new(Logic::GreaterOrEqual(left, right)).with_position(span),
)
},
),
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::LessOrEqual)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Logic(
Box::new(Logic::LessOrEqual(left, right)).with_position(span),
)
},
),
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::DoubleAmpersand)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Logic(Box::new(Logic::And(left, right)).with_position(span))
},
),
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::DoublePipe)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Logic(Box::new(Logic::Or(left, right)).with_position(span))
},
),
// Math
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Plus)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Math(Box::new(Math::Add(left, right)).with_position(span))
},
),
infix(
left(1),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Minus)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Math(Box::new(Math::Subtract(left, right)).with_position(span))
},
),
infix(
left(2),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Asterisk)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Math(Box::new(Math::Multiply(left, right)).with_position(span))
},
),
infix(
left(2),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Slash)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Math(Box::new(Math::Divide(left, right)).with_position(span))
},
),
infix(
left(1),
2024-06-24 06:58:19 +00:00
just(Token::Symbol(Symbol::Percent)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::Math(Box::new(Math::Modulo(left, right)).with_position(span))
},
),
// Indexes
infix(
left(4),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Dot)),
2024-06-20 20:36:16 +00:00
|left, _, right, span| {
Expression::MapIndex(
Box::new(MapIndex::new(left, right)).with_position(span),
)
},
),
postfix(
3,
expression.clone().delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::SquareOpen)),
just(Token::Symbol(Symbol::SquareClose)),
2024-06-20 20:36:16 +00:00
),
|left, right, span| {
Expression::ListIndex(
Box::new(ListIndex::new(left, right)).with_position(span),
)
},
),
// Function call
postfix(
3,
turbofish.clone().or_not().then(
expression
.clone()
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::ParenOpen)),
just(Token::Symbol(Symbol::ParenClose)),
2024-06-20 20:36:16 +00:00
),
),
2024-06-24 02:39:33 +00:00
|function_expression,
(type_parameters, value_parameters): (
Option<Vec<TypeConstructor>>,
Vec<Expression>,
),
span| {
let value_parameters = if value_parameters.is_empty() {
None
} else {
Some(value_parameters)
};
2024-06-20 20:36:16 +00:00
Expression::FunctionCall(
FunctionCall::new(
function_expression,
type_parameters,
value_parameters,
)
.with_position(span),
)
},
),
// As
postfix(
2,
just(Token::Keyword(Keyword::As)).ignore_then(type_constructor.clone()),
|expression, constructor, span| {
Expression::As(
Box::new(As::new(expression, constructor)).with_position(span),
)
},
),
));
choice((
2024-06-22 15:44:09 +00:00
built_in_function_call,
2024-06-20 20:36:16 +00:00
logic_math_indexes_as_and_function_calls,
enum_instance,
range,
function,
list,
map,
basic_value,
identifier_expression,
))
});
let expression_statement = expression
.clone()
.map(|expression| Statement::Expression(expression));
let async_block = just(Token::Keyword(Keyword::Async))
.ignore_then(statement.clone().repeated().collect().delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::CurlyOpen)),
just(Token::Symbol(Symbol::CurlyClose)),
2024-06-20 20:36:16 +00:00
))
.map_with(|statements, state| {
Statement::AsyncBlock(AsyncBlock::new(statements).with_position(state.span()))
});
let r#break = just(Token::Keyword(Keyword::Break))
.map_with(|_, state| Statement::Break(().with_position(state.span())));
let assignment = positioned_identifier
.clone()
.then(type_specification.clone().or_not())
.then(choice((
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Equal)).to(AssignmentOperator::Assign),
2024-06-22 15:44:09 +00:00
just(Token::Symbol(Symbol::PlusEqual)).to(AssignmentOperator::AddAssign),
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::MinusEqual)).to(AssignmentOperator::SubAssign),
2024-06-20 20:36:16 +00:00
)))
.then(statement.clone())
.map_with(|(((identifier, r#type), operator), statement), state| {
Statement::Assignment(
Assignment::new(identifier, r#type, operator, statement)
.with_position(state.span()),
)
});
let block_statement = block.clone().map(|block| Statement::Block(block));
let r#loop = statement
.clone()
.repeated()
.at_least(1)
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Keyword(Keyword::Loop)).then(just(Token::Symbol(Symbol::CurlyOpen))),
just(Token::Symbol(Symbol::CurlyClose)),
2024-06-20 20:36:16 +00:00
)
.map_with(|statements, state| {
Statement::Loop(Loop::new(statements).with_position(state.span()))
});
let r#while = just(Token::Keyword(Keyword::While))
.ignore_then(expression.clone())
.then(statement.clone().repeated().collect().delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::CurlyOpen)),
just(Token::Symbol(Symbol::CurlyClose)),
2024-06-20 20:36:16 +00:00
))
.map_with(|(expression, statements), state| {
Statement::While(While::new(expression, statements).with_position(state.span()))
});
let if_else = just(Token::Keyword(Keyword::If))
.ignore_then(expression.clone())
.then(block.clone())
.then(
just(Token::Keyword(Keyword::Else))
.ignore_then(just(Token::Keyword(Keyword::If)))
.ignore_then(expression.clone())
.then(block.clone())
.repeated()
2024-06-20 23:25:46 +00:00
.at_least(1)
.collect()
.or_not(),
2024-06-20 20:36:16 +00:00
)
.then(
just(Token::Keyword(Keyword::Else))
.ignore_then(block.clone())
.or_not(),
)
.map_with(
|(((if_expression, if_block), else_ifs), else_block), state| {
Statement::IfElse(
IfElse::new(if_expression, if_block, else_ifs, else_block)
.with_position(state.span()),
)
},
);
let type_alias = just(Token::Keyword(Keyword::Type))
.ignore_then(positioned_identifier.clone())
2024-06-20 23:25:46 +00:00
.then_ignore(just(Token::Symbol(Symbol::Equal)))
2024-06-20 20:36:16 +00:00
.then(type_constructor.clone())
.map_with(|(identifier, constructor), state| {
Statement::TypeAlias(
TypeAlias::new(identifier, constructor).with_position(state.span()),
)
});
let enum_variant = positioned_identifier
.clone()
.then(
type_constructor
.clone()
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 20:36:16 +00:00
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::ParenOpen)),
just(Token::Symbol(Symbol::ParenClose)),
2024-06-20 20:36:16 +00:00
)
.or_not(),
)
.map(|(identifier, constructors)| EnumVariant {
name: identifier,
content: constructors,
});
let enum_declaration = just(Token::Keyword(Keyword::Enum))
.ignore_then(positioned_identifier.clone())
.then(
positioned_identifier
.clone()
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 22:41:07 +00:00
.allow_trailing()
2024-06-20 20:36:16 +00:00
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::Less)),
just(Token::Symbol(Symbol::Greater)),
2024-06-20 20:36:16 +00:00
)
.or_not(),
)
.then(
enum_variant
2024-06-20 23:25:46 +00:00
.separated_by(just(Token::Symbol(Symbol::Comma)))
2024-06-20 22:41:07 +00:00
.allow_trailing()
.at_least(1)
2024-06-20 20:36:16 +00:00
.collect()
.delimited_by(
2024-06-20 23:25:46 +00:00
just(Token::Symbol(Symbol::CurlyOpen)),
just(Token::Symbol(Symbol::CurlyClose)),
2024-06-20 20:36:16 +00:00
),
)
.map_with(|((name, type_parameters), variants), state| {
Statement::EnumDeclaration(
2024-06-21 17:56:04 +00:00
EnumDeclaration::new(name, type_parameters, variants)
.with_position(state.span()),
2024-06-20 20:36:16 +00:00
)
});
comment
.repeated()
.or_not()
.ignore_then(choice((
assignment,
expression_statement,
async_block,
if_else,
r#break,
block_statement,
r#loop,
r#while,
type_alias,
enum_declaration,
)))
2024-06-20 23:25:46 +00:00
.then_ignore(just(Token::Symbol(Symbol::Semicolon)).or_not())
2024-06-20 20:36:16 +00:00
});
2024-06-22 15:44:09 +00:00
statement
.repeated()
.collect()
.map(|statements| AbstractTree::new(statements))
2024-06-20 20:36:16 +00:00
}