pub mod prelude;
use std::fmt;
use std::fmt::{Debug, Formatter};
use std::hash::Hash;
use std::rc::Rc;
#[derive(PartialEq, Eq, Hash, Default, Clone)]
pub struct SpanWithoutFileId {
pub offset: u32,
pub length: u16,
}
impl Debug for SpanWithoutFileId {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "<{}:{}>", self.offset, self.length)
}
}
#[derive(PartialEq, Eq, Hash, Default, Clone)]
pub struct Node {
pub span: SpanWithoutFileId,
}
impl Debug for Node {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
write!(f, "{:?}", self.span)
}
}
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct QualifiedTypeIdentifier {
pub name: LocalTypeIdentifier,
pub module_path: Option<ModulePath>,
pub generic_params: Vec<Type>,
}
impl QualifiedTypeIdentifier {
#[must_use]
pub fn new(name: LocalTypeIdentifier, module_path: Vec<Node>) -> Self {
let module_path = if module_path.is_empty() {
None
} else {
Some(ModulePath(module_path))
};
Self {
name,
module_path,
generic_params: Vec::new(),
}
}
#[must_use]
pub fn new_with_generics(
name: LocalTypeIdentifier,
module_path: Vec<Node>,
generic_params: Vec<Type>,
) -> Self {
let module_path = if module_path.is_empty() {
None
} else {
Some(ModulePath(module_path))
};
Self {
name,
module_path,
generic_params,
}
}
}
#[derive(Debug, PartialEq, Eq, Hash, Clone)]
pub struct QualifiedIdentifier {
pub name: Node,
pub module_path: Option<ModulePath>,
}
impl QualifiedIdentifier {
#[must_use]
pub fn new(name: Node, module_path: Vec<Node>) -> Self {
let module_path = if module_path.is_empty() {
None
} else {
Some(ModulePath(module_path))
};
Self { name, module_path }
}
}
#[derive(Debug, PartialEq, Eq, Hash, Default, Clone)]
pub struct LocalTypeIdentifier(pub Node);
impl LocalTypeIdentifier {
#[must_use]
pub const fn new(node: Node) -> Self {
Self(node)
}
}
#[derive(PartialEq, Eq, Hash, Debug)]
pub struct LocalIdentifier(pub Node);
impl LocalIdentifier {
#[must_use]
pub const fn new(node: Node) -> Self {
Self(node)
}
}
#[derive(PartialEq, Eq, Hash, Debug)]
pub struct ConstantIdentifier(pub Node);
impl ConstantIdentifier {
#[must_use]
pub const fn new(node: Node) -> Self {
Self(node)
}
}
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct MemberFunctionIdentifier(pub Node);
#[derive(Debug, Eq, Hash, PartialEq)]
pub struct IdentifierName(pub Node);
#[derive(Debug, Eq, Hash, PartialEq)]
pub struct FieldName(pub Node);
#[derive()]
pub struct StringConst(pub Node);
#[derive(Debug, Eq, Hash, PartialEq, Clone)]
pub struct ModulePath(pub Vec<Node>);
impl Default for ModulePath {
fn default() -> Self {
Self::new()
}
}
impl ModulePath {
#[must_use]
pub const fn new() -> Self {
Self(vec![])
}
}
#[derive(Debug)]
pub enum UseItem {
Identifier(LocalIdentifier),
Type(LocalTypeIdentifier),
}
#[derive(Debug)]
pub struct Use {
pub module_path: ModulePath,
pub assigned_path: Vec<String>,
pub items: Vec<UseItem>,
}
#[derive(Debug, Eq, PartialEq, Default)]
pub struct StructType {
pub identifier: LocalTypeIdentifier,
pub fields: Vec<FieldType>,
}
impl StructType {
#[must_use]
pub const fn new(identifier: LocalTypeIdentifier, fields: Vec<FieldType>) -> Self {
Self { identifier, fields }
}
}
#[derive(Debug)]
pub struct ConstantInfo {
pub constant_identifier: ConstantIdentifier,
pub expression: Box<Expression>,
}
#[derive(Debug)]
pub enum Definition {
StructDef(StructType),
EnumDef(Node, Vec<EnumVariantType>),
FunctionDef(Function),
ImplDef(Node, Vec<Function>),
Use(Use),
Comment(Node),
Constant(ConstantInfo),
}
#[derive(Debug)]
pub struct ForVar {
pub identifier: Node,
pub is_mut: Option<Node>,
}
#[derive(Debug)]
pub enum ForPattern {
Single(ForVar),
Pair(ForVar, ForVar),
}
#[derive(Debug)]
pub struct IteratableExpression {
pub expression: Box<Expression>,
}
#[derive(Eq, PartialEq)]
pub struct VariableNotMut {
pub name: LocalIdentifier,
}
#[derive(Clone, Eq, PartialEq)]
pub struct Variable {
pub name: Node,
pub is_mutable: Option<Node>,
}
#[derive(Debug)]
pub struct VariableBinding {
pub variable: Variable,
pub expression: Expression,
}
impl Variable {
#[must_use]
pub const fn new(name: Node, is_mutable: Option<Node>) -> Self {
Self { name, is_mutable }
}
}
impl Debug for Variable {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
if let Some(found) = &self.is_mutable {
write!(f, "mut {found:?} {:?}", self.name)
} else {
write!(f, "{:?}", self.name)
}
}
}
#[derive(Debug, Eq, PartialEq)]
pub struct Parameter {
pub variable: Variable,
pub param_type: Type,
}
#[derive(Debug)]
pub struct FunctionDeclaration {
pub name: Node,
pub params: Vec<Parameter>,
pub self_parameter: Option<SelfParameter>,
pub return_type: Option<Type>,
}
#[derive(Debug)]
pub struct FunctionWithBody {
pub declaration: FunctionDeclaration,
pub body: Expression,
pub constants: Vec<ConstantInfo>,
}
#[derive(Debug)]
pub enum Function {
Internal(FunctionWithBody),
External(FunctionDeclaration),
}
#[derive(Debug)]
pub enum ImplItem {
Member(ImplMember),
Function(ImplFunction),
}
#[derive(Debug)]
pub enum ImplMember {
Internal(ImplMemberData),
External(ImplMemberSignature),
}
#[derive(Debug)]
pub struct ImplMemberSignature {
pub name: LocalIdentifier,
pub self_param: SelfParameter,
pub params: Vec<Parameter>,
pub return_type: Type,
}
#[derive(Debug)]
pub enum ImplFunction {
Internal(FunctionWithBody),
External(FunctionDeclaration),
}
#[derive(Debug)]
pub struct ImplMemberData {
pub name: LocalIdentifier,
pub self_param: SelfParameter,
pub params: Vec<Parameter>,
pub return_type: Type,
pub body: Vec<Expression>, }
pub type ImplMemberRef = Rc<ImplMember>;
#[derive(Debug)]
pub struct SelfParameter {
pub is_mutable: Option<Node>,
pub self_node: Node,
}
#[derive(Debug, PartialEq, Eq)]
pub enum CompoundOperatorKind {
Add, Sub, Mul, Div, Modulo, }
#[derive(Debug)]
pub struct CompoundOperator {
pub node: Node,
pub kind: CompoundOperatorKind,
}
#[derive(Debug)]
pub enum LocationExpression {
Variable(Variable),
IndexAccess(Box<Expression>, Box<Expression>), FieldAccess(Box<Expression>, Node), }
#[derive(Debug)]
pub enum Expression {
FieldOrMemberAccess(Box<Expression>, Node),
VariableAccess(Variable),
ConstantAccess(ConstantIdentifier),
FunctionAccess(QualifiedIdentifier),
MutRef(LocationExpression),
IndexAccess(Box<Expression>, Box<Expression>),
VariableAssignment(Variable, Box<Expression>),
VariableCompoundAssignment(Node, CompoundOperator, Box<Expression>),
MultiVariableAssignment(Vec<Variable>, Box<Expression>),
IndexAssignment(Box<Expression>, Box<Expression>, Box<Expression>),
IndexCompoundAssignment(
Box<Expression>,
Box<Expression>,
CompoundOperator,
Box<Expression>,
),
FieldAssignment(Box<Expression>, Node, Box<Expression>),
FieldCompoundAssignment(Box<Expression>, Node, CompoundOperator, Box<Expression>),
BinaryOp(Box<Expression>, BinaryOperator, Box<Expression>),
UnaryOp(UnaryOperator, Box<Expression>),
NoneCoalesceOperator(Box<Expression>, Box<Expression>),
FunctionCall(Box<Expression>, Vec<Expression>),
StaticCall(QualifiedTypeIdentifier, Node, Vec<Expression>),
StaticCallGeneric(QualifiedTypeIdentifier, Node, Vec<Expression>),
MemberOrFieldCall(Box<Expression>, Node, Vec<Expression>),
Block(Vec<Expression>),
With(Vec<VariableBinding>, Box<Expression>),
ForLoop(ForPattern, IteratableExpression, Box<Expression>),
WhileLoop(Box<Expression>, Box<Expression>),
Return(Option<Box<Expression>>),
Break(Node),
Continue(Node),
If(Box<Expression>, Box<Expression>, Option<Box<Expression>>),
Match(Box<Expression>, Vec<MatchArm>),
Guard(Vec<GuardExpr>, Option<Box<Expression>>),
InterpolatedString(Vec<StringPart>),
StructInstantiation(QualifiedTypeIdentifier, Vec<FieldExpression>, bool),
ExclusiveRange(Box<Expression>, Box<Expression>),
InclusiveRange(Box<Expression>, Box<Expression>),
Literal(Literal),
PostfixOp(PostfixOperator, Box<Expression>),
StaticMemberFunctionReference(QualifiedTypeIdentifier, Node),
}
#[derive(Debug)]
pub struct MatchArm {
pub pattern: Pattern,
pub expression: Expression,
}
#[derive(Debug)]
pub enum Literal {
Int(Node),
Float(Node),
String(Node, String),
Bool(Node),
EnumVariant(EnumVariantLiteral),
Tuple(Vec<Expression>),
Array(Vec<Expression>),
Map(Vec<(Expression, Expression)>),
Unit(Node), None(Node), }
#[derive(Debug)]
pub struct FieldExpression {
pub field_name: FieldName,
pub expression: Expression,
}
#[derive(Debug, Eq, PartialEq)]
pub struct FieldType {
pub field_name: FieldName,
pub field_type: Type,
}
#[derive(Debug)]
pub enum EnumVariantLiteral {
Simple(QualifiedTypeIdentifier, LocalTypeIdentifier),
Tuple(
QualifiedTypeIdentifier,
LocalTypeIdentifier,
Vec<Expression>,
),
Struct(
QualifiedTypeIdentifier,
LocalTypeIdentifier,
Vec<FieldExpression>,
),
}
#[derive(Debug, Default)]
pub struct AnonymousStructType {
pub fields: Vec<FieldType>,
}
#[derive(Debug)]
pub enum EnumVariantType {
Simple(Node),
Tuple(Node, Vec<Type>),
Struct(Node, AnonymousStructType),
}
#[derive(Debug, PartialEq, Eq, Hash)]
pub struct TypeForParameter {
pub ast_type: Type,
pub is_mutable: bool,
}
#[derive(Debug, PartialEq, Eq, Hash)]
pub enum Type {
Int(Node),
Float(Node),
String(Node),
Bool(Node),
Unit(Node),
Any(Node),
Generic(Box<Type>, Vec<Type>),
Struct(QualifiedTypeIdentifier),
Array(Box<Type>),
Map(Box<Type>, Box<Type>),
Tuple(Vec<Type>),
Enum(QualifiedTypeIdentifier),
TypeReference(QualifiedTypeIdentifier),
Optional(Box<Type>, Node),
Function(Vec<TypeForParameter>, Box<Type>),
}
#[derive(Debug)]
pub enum BinaryOperator {
Add(Node),
Subtract(Node),
Multiply(Node),
Divide(Node),
Modulo(Node),
LogicalOr(Node),
LogicalAnd(Node),
Equal(Node),
NotEqual(Node),
LessThan(Node),
LessEqual(Node),
GreaterThan(Node),
GreaterEqual(Node),
RangeExclusive(Node),
}
#[derive(Debug)]
pub enum UnaryOperator {
Not(Node),
Negate(Node),
}
#[derive(Debug)]
pub enum PostfixOperator {
Unwrap(Node), }
#[derive(Debug)]
pub struct GuardExpr {
pub condition: Expression,
pub result: Expression,
}
#[derive(Debug)]
pub struct GuardClause(pub Expression);
#[derive(Debug)]
pub enum Pattern {
Wildcard(Node),
NormalPattern(NormalPattern, Option<GuardClause>),
}
#[derive(Debug)]
pub enum NormalPattern {
PatternList(Vec<PatternElement>),
EnumPattern(Node, Option<Vec<PatternElement>>),
Literal(Literal),
}
#[derive(Debug)]
pub enum PatternElement {
Variable(Node),
Expression(Expression),
Wildcard(Node),
}
#[derive(Debug)]
pub enum StringPart {
Literal(Node, String),
Interpolation(Box<Expression>, Option<FormatSpecifier>),
}
#[derive(Debug)]
pub enum FormatSpecifier {
LowerHex(Node), UpperHex(Node), Binary(Node), Float(Node), Precision(u32, Node, PrecisionType), }
#[derive(Debug)]
pub enum PrecisionType {
Float(Node),
String(Node),
}
#[derive()]
pub struct Module {
pub expression: Option<Expression>,
pub definitions: Vec<Definition>,
}
impl Debug for Module {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
for definition in &self.definitions {
writeln!(f, "{definition:?}")?;
}
if !self.definitions.is_empty() && self.expression.is_some() {
writeln!(f, "---")?;
}
if let Some(found_expression) = &self.expression {
match found_expression {
Expression::Block(expressions) => {
for expression in expressions {
writeln!(f, "{expression:?}")?;
}
}
_ => writeln!(f, "{found_expression:?}")?,
}
}
Ok(())
}
}
impl Module {
#[must_use]
pub fn new(definitions: Vec<Definition>, expression: Option<Expression>) -> Self {
Self {
expression,
definitions,
}
}
#[must_use]
pub const fn expression(&self) -> &Option<Expression> {
&self.expression
}
#[must_use]
pub const fn definitions(&self) -> &Vec<Definition> {
&self.definitions
}
#[must_use]
pub fn imports(&self) -> Vec<&Use> {
let mut use_items = Vec::new();
for def in &self.definitions {
if let Definition::Use(use_info) = def {
use_items.push(use_info);
}
}
use_items
}
}