Begin refactoring to use type checking
This commit is contained in:
parent
7259206c98
commit
77814c4576
@ -11,8 +11,8 @@ use std::{
|
|||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
abstract_tree::BinaryOperator, parse, AbstractSyntaxTree, BuiltInFunction, Context, DustError,
|
abstract_tree::BinaryOperator, parse, AbstractSyntaxTree, Context, DustError, Node, Span,
|
||||||
Node, Span, Statement, Type,
|
Statement, Type,
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Analyzes the abstract syntax tree for errors.
|
/// Analyzes the abstract syntax tree for errors.
|
||||||
@ -22,14 +22,14 @@ use crate::{
|
|||||||
/// # use std::collections::HashMap;
|
/// # use std::collections::HashMap;
|
||||||
/// # use dust_lang::*;
|
/// # use dust_lang::*;
|
||||||
/// let input = "x = 1 + false";
|
/// let input = "x = 1 + false";
|
||||||
/// let mut context = Context::new();
|
/// let result = analyze(input);
|
||||||
/// let result = analyze(input, &mut context);
|
|
||||||
///
|
///
|
||||||
/// assert!(result.is_err());
|
/// assert!(result.is_err());
|
||||||
/// ```
|
/// ```
|
||||||
pub fn analyze<'src>(source: &'src str, context: &mut Context) -> Result<(), DustError<'src>> {
|
pub fn analyze(source: &str) -> Result<(), DustError> {
|
||||||
let abstract_tree = parse(source)?;
|
let abstract_tree = parse(source)?;
|
||||||
let mut analyzer = Analyzer::new(&abstract_tree, context);
|
let mut context = Context::new();
|
||||||
|
let mut analyzer = Analyzer::new(&abstract_tree, &mut context);
|
||||||
|
|
||||||
analyzer
|
analyzer
|
||||||
.analyze()
|
.analyze()
|
||||||
@ -90,7 +90,6 @@ impl<'a> Analyzer<'a> {
|
|||||||
identifier.clone(),
|
identifier.clone(),
|
||||||
right_type.ok_or(AnalyzerError::ExpectedValue {
|
right_type.ok_or(AnalyzerError::ExpectedValue {
|
||||||
actual: right.as_ref().clone(),
|
actual: right.as_ref().clone(),
|
||||||
position: right.position,
|
|
||||||
})?,
|
})?,
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -113,34 +112,20 @@ impl<'a> Analyzer<'a> {
|
|||||||
| BinaryOperator::Less
|
| BinaryOperator::Less
|
||||||
| BinaryOperator::LessOrEqual = operator.inner
|
| BinaryOperator::LessOrEqual = operator.inner
|
||||||
{
|
{
|
||||||
match (left_type, right_type) {
|
if let Some(expected_type) = left_type {
|
||||||
(Some(Type::Integer), Some(Type::Integer)) => {}
|
if let Some(actual_type) = right_type {
|
||||||
(Some(Type::Float), Some(Type::Float)) => {}
|
expected_type.check(&actual_type).map_err(|conflict| {
|
||||||
(Some(Type::String), Some(Type::String)) => {}
|
AnalyzerError::TypeConflict {
|
||||||
(Some(Type::Integer), _) => {
|
actual_statement: right.as_ref().clone(),
|
||||||
return Err(AnalyzerError::ExpectedInteger {
|
actual_type: conflict.actual,
|
||||||
actual: right.as_ref().clone(),
|
expected: conflict.expected,
|
||||||
position: right.position,
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
(Some(Type::Float), _) => {
|
})?;
|
||||||
return Err(AnalyzerError::ExpectedFloat {
|
} else {
|
||||||
|
return Err(AnalyzerError::ExpectedValue {
|
||||||
actual: right.as_ref().clone(),
|
actual: right.as_ref().clone(),
|
||||||
position: right.position,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
(Some(Type::String), _) => {
|
|
||||||
return Err(AnalyzerError::ExpectedString {
|
|
||||||
actual: right.as_ref().clone(),
|
|
||||||
position: right.position,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
(_, _) => {
|
|
||||||
return Err(AnalyzerError::ExpectedIntegerFloatOrString {
|
|
||||||
actual: right.as_ref().clone(),
|
|
||||||
position: right.position,
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -168,6 +153,40 @@ impl<'a> Analyzer<'a> {
|
|||||||
position: node.position,
|
position: node.position,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for ((_identifier, parameter_type), argument) in
|
||||||
|
value_parameters.iter().zip(arguments)
|
||||||
|
{
|
||||||
|
let argument_type_option = argument.inner.expected_type(self.context);
|
||||||
|
|
||||||
|
if let Some(argument_type) = argument_type_option {
|
||||||
|
parameter_type.check(&argument_type).map_err(|conflict| {
|
||||||
|
AnalyzerError::TypeConflict {
|
||||||
|
actual_statement: argument.clone(),
|
||||||
|
actual_type: conflict.actual,
|
||||||
|
expected: parameter_type.clone(),
|
||||||
|
}
|
||||||
|
})?;
|
||||||
|
} else {
|
||||||
|
return Err(AnalyzerError::ExpectedValue {
|
||||||
|
actual: argument.clone(),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if arguments.is_empty() && !value_parameters.is_empty() {
|
||||||
|
return Err(AnalyzerError::ExpectedValueArgumentCount {
|
||||||
|
expected: value_parameters.len(),
|
||||||
|
actual: 0,
|
||||||
|
position: node.position,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} else if !value_parameters.is_empty() {
|
||||||
|
return Err(AnalyzerError::ExpectedValueArgumentCount {
|
||||||
|
expected: value_parameters.len(),
|
||||||
|
actual: 0,
|
||||||
|
position: node.position,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Statement::Constant(_) => {}
|
Statement::Constant(_) => {}
|
||||||
@ -313,22 +332,10 @@ impl<'a> Analyzer<'a> {
|
|||||||
} else {
|
} else {
|
||||||
return Err(AnalyzerError::ExpectedValue {
|
return Err(AnalyzerError::ExpectedValue {
|
||||||
actual: left.as_ref().clone(),
|
actual: left.as_ref().clone(),
|
||||||
position: left.position,
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Statement::BuiltInFunctionCall { function, .. } = &right.inner {
|
self.analyze_node(left)?;
|
||||||
if function == &BuiltInFunction::IsEven || function == &BuiltInFunction::IsOdd {
|
|
||||||
if let Some(Type::Integer) = left.inner.expected_type(self.context) {
|
|
||||||
} else {
|
|
||||||
return Err(AnalyzerError::ExpectedIntegerOrFloat {
|
|
||||||
actual: left.as_ref().clone(),
|
|
||||||
position: left.position,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
self.analyze_node(right)?;
|
self.analyze_node(right)?;
|
||||||
}
|
}
|
||||||
Statement::While { condition, body } => {
|
Statement::While { condition, body } => {
|
||||||
@ -371,11 +378,11 @@ pub enum AnalyzerError {
|
|||||||
actual: Node<Statement>,
|
actual: Node<Statement>,
|
||||||
position: Span,
|
position: Span,
|
||||||
},
|
},
|
||||||
ExpectedIntegerOrFloat {
|
ExpectedNumber {
|
||||||
actual: Node<Statement>,
|
actual: Node<Statement>,
|
||||||
position: Span,
|
position: Span,
|
||||||
},
|
},
|
||||||
ExpectedIntegerFloatOrString {
|
ExpectedNumberOrString {
|
||||||
actual: Node<Statement>,
|
actual: Node<Statement>,
|
||||||
position: Span,
|
position: Span,
|
||||||
},
|
},
|
||||||
@ -385,23 +392,25 @@ pub enum AnalyzerError {
|
|||||||
},
|
},
|
||||||
ExpectedValue {
|
ExpectedValue {
|
||||||
actual: Node<Statement>,
|
actual: Node<Statement>,
|
||||||
position: Span,
|
|
||||||
},
|
},
|
||||||
ExpectedValueArgumentCount {
|
ExpectedValueArgumentCount {
|
||||||
expected: usize,
|
expected: usize,
|
||||||
actual: usize,
|
actual: usize,
|
||||||
position: Span,
|
position: Span,
|
||||||
},
|
},
|
||||||
|
TypeConflict {
|
||||||
|
actual_statement: Node<Statement>,
|
||||||
|
actual_type: Type,
|
||||||
|
expected: Type,
|
||||||
|
},
|
||||||
UndefinedVariable {
|
UndefinedVariable {
|
||||||
identifier: Node<Statement>,
|
identifier: Node<Statement>,
|
||||||
},
|
},
|
||||||
UnexpectedIdentifier {
|
UnexpectedIdentifier {
|
||||||
identifier: Node<Statement>,
|
identifier: Node<Statement>,
|
||||||
position: Span,
|
|
||||||
},
|
},
|
||||||
UnexectedString {
|
UnexectedString {
|
||||||
actual: Node<Statement>,
|
actual: Node<Statement>,
|
||||||
position: (usize, usize),
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -412,15 +421,18 @@ impl AnalyzerError {
|
|||||||
AnalyzerError::ExpectedFloat { position, .. } => *position,
|
AnalyzerError::ExpectedFloat { position, .. } => *position,
|
||||||
AnalyzerError::ExpectedFunction { position, .. } => *position,
|
AnalyzerError::ExpectedFunction { position, .. } => *position,
|
||||||
AnalyzerError::ExpectedIdentifier { position, .. } => *position,
|
AnalyzerError::ExpectedIdentifier { position, .. } => *position,
|
||||||
AnalyzerError::ExpectedValue { position, .. } => *position,
|
AnalyzerError::ExpectedValue { actual } => actual.position,
|
||||||
AnalyzerError::ExpectedInteger { position, .. } => *position,
|
AnalyzerError::ExpectedInteger { position, .. } => *position,
|
||||||
AnalyzerError::ExpectedIntegerOrFloat { position, .. } => *position,
|
AnalyzerError::ExpectedNumber { position, .. } => *position,
|
||||||
AnalyzerError::ExpectedIntegerFloatOrString { position, .. } => *position,
|
AnalyzerError::ExpectedNumberOrString { position, .. } => *position,
|
||||||
AnalyzerError::ExpectedString { position, .. } => *position,
|
AnalyzerError::ExpectedString { position, .. } => *position,
|
||||||
AnalyzerError::ExpectedValueArgumentCount { position, .. } => *position,
|
AnalyzerError::ExpectedValueArgumentCount { position, .. } => *position,
|
||||||
|
AnalyzerError::TypeConflict {
|
||||||
|
actual_statement, ..
|
||||||
|
} => actual_statement.position,
|
||||||
AnalyzerError::UndefinedVariable { identifier } => identifier.position,
|
AnalyzerError::UndefinedVariable { identifier } => identifier.position,
|
||||||
AnalyzerError::UnexpectedIdentifier { position, .. } => *position,
|
AnalyzerError::UnexpectedIdentifier { identifier } => identifier.position,
|
||||||
AnalyzerError::UnexectedString { position, .. } => *position,
|
AnalyzerError::UnexectedString { actual } => actual.position,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -445,10 +457,10 @@ impl Display for AnalyzerError {
|
|||||||
AnalyzerError::ExpectedInteger { actual, .. } => {
|
AnalyzerError::ExpectedInteger { actual, .. } => {
|
||||||
write!(f, "Expected integer, found {}", actual)
|
write!(f, "Expected integer, found {}", actual)
|
||||||
}
|
}
|
||||||
AnalyzerError::ExpectedIntegerOrFloat { actual, .. } => {
|
AnalyzerError::ExpectedNumber { actual, .. } => {
|
||||||
write!(f, "Expected integer or float, found {}", actual)
|
write!(f, "Expected integer or float, found {}", actual)
|
||||||
}
|
}
|
||||||
AnalyzerError::ExpectedIntegerFloatOrString { actual, .. } => {
|
AnalyzerError::ExpectedNumberOrString { actual, .. } => {
|
||||||
write!(f, "Expected integer, float, or string, found {}", actual)
|
write!(f, "Expected integer, float, or string, found {}", actual)
|
||||||
}
|
}
|
||||||
AnalyzerError::ExpectedString { actual, .. } => {
|
AnalyzerError::ExpectedString { actual, .. } => {
|
||||||
@ -460,6 +472,17 @@ impl Display for AnalyzerError {
|
|||||||
AnalyzerError::ExpectedValueArgumentCount {
|
AnalyzerError::ExpectedValueArgumentCount {
|
||||||
expected, actual, ..
|
expected, actual, ..
|
||||||
} => write!(f, "Expected {} value arguments, found {}", expected, actual),
|
} => write!(f, "Expected {} value arguments, found {}", expected, actual),
|
||||||
|
AnalyzerError::TypeConflict {
|
||||||
|
actual_statement,
|
||||||
|
actual_type,
|
||||||
|
expected,
|
||||||
|
} => {
|
||||||
|
write!(
|
||||||
|
f,
|
||||||
|
"Expected type {}, found {}, which has type {}",
|
||||||
|
expected, actual_statement, actual_type
|
||||||
|
)
|
||||||
|
}
|
||||||
AnalyzerError::UndefinedVariable { identifier } => {
|
AnalyzerError::UndefinedVariable { identifier } => {
|
||||||
write!(f, "Undefined variable {}", identifier)
|
write!(f, "Undefined variable {}", identifier)
|
||||||
}
|
}
|
||||||
@ -480,52 +503,51 @@ mod tests {
|
|||||||
use super::*;
|
use super::*;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn length_no_arguments() {
|
fn is_even_wrong_type() {
|
||||||
let abstract_tree = AbstractSyntaxTree {
|
let source = "is_even('hello')";
|
||||||
nodes: [Node::new(
|
|
||||||
Statement::BuiltInFunctionCall {
|
|
||||||
function: BuiltInFunction::Length,
|
|
||||||
type_arguments: None,
|
|
||||||
value_arguments: Some(vec![]),
|
|
||||||
},
|
|
||||||
(0, 1),
|
|
||||||
)]
|
|
||||||
.into(),
|
|
||||||
};
|
|
||||||
let mut context = Context::new();
|
|
||||||
let mut analyzer = Analyzer::new(&abstract_tree, &mut context);
|
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
analyzer.analyze(),
|
analyze(source),
|
||||||
Err(AnalyzerError::ExpectedValueArgumentCount {
|
Err(DustError::AnalyzerError {
|
||||||
|
analyzer_error: AnalyzerError::ExpectedInteger {
|
||||||
|
actual: Node::new(Statement::Constant(Value::string("hello")), (1, 1)),
|
||||||
|
position: (1, 1)
|
||||||
|
},
|
||||||
|
source
|
||||||
|
})
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn length_no_arguments() {
|
||||||
|
let source = "length()";
|
||||||
|
|
||||||
|
assert_eq!(
|
||||||
|
analyze(source),
|
||||||
|
Err(DustError::AnalyzerError {
|
||||||
|
analyzer_error: AnalyzerError::ExpectedValueArgumentCount {
|
||||||
expected: 1,
|
expected: 1,
|
||||||
actual: 0,
|
actual: 0,
|
||||||
position: (0, 1)
|
position: (0, 6)
|
||||||
|
},
|
||||||
|
source
|
||||||
})
|
})
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn float_plus_integer() {
|
fn float_plus_integer() {
|
||||||
let abstract_tree = AbstractSyntaxTree {
|
let source = "42.0 + 2";
|
||||||
nodes: [Node::new(
|
|
||||||
Statement::BinaryOperation {
|
|
||||||
left: Box::new(Node::new(Statement::Constant(Value::float(1.0)), (0, 1))),
|
|
||||||
operator: Node::new(BinaryOperator::Add, (1, 2)),
|
|
||||||
right: Box::new(Node::new(Statement::Constant(Value::integer(1)), (3, 4))),
|
|
||||||
},
|
|
||||||
(0, 2),
|
|
||||||
)]
|
|
||||||
.into(),
|
|
||||||
};
|
|
||||||
let mut context = Context::new();
|
|
||||||
let mut analyzer = Analyzer::new(&abstract_tree, &mut context);
|
|
||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
analyzer.analyze(),
|
analyze(source),
|
||||||
Err(AnalyzerError::ExpectedFloat {
|
Err(DustError::AnalyzerError {
|
||||||
actual: Node::new(Statement::Constant(Value::integer(1)), (3, 4)),
|
analyzer_error: AnalyzerError::TypeConflict {
|
||||||
position: (3, 4)
|
actual_statement: Node::new(Statement::Constant(Value::integer(2)), (7, 8)),
|
||||||
|
actual_type: Type::Integer,
|
||||||
|
expected: Type::Float,
|
||||||
|
},
|
||||||
|
source
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
@ -579,7 +601,7 @@ mod tests {
|
|||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
analyzer.analyze(),
|
analyzer.analyze(),
|
||||||
Err(AnalyzerError::ExpectedIntegerOrFloat {
|
Err(AnalyzerError::ExpectedNumber {
|
||||||
actual: Node::new(Statement::Constant(Value::boolean(true)), (0, 1)),
|
actual: Node::new(Statement::Constant(Value::boolean(true)), (0, 1)),
|
||||||
position: (0, 1)
|
position: (0, 1)
|
||||||
})
|
})
|
||||||
@ -609,7 +631,7 @@ mod tests {
|
|||||||
|
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
analyzer.analyze(),
|
analyzer.analyze(),
|
||||||
Err(AnalyzerError::ExpectedIntegerOrFloat {
|
Err(AnalyzerError::ExpectedNumber {
|
||||||
actual: Node::new(Statement::Constant(Value::boolean(true)), (0, 1)),
|
actual: Node::new(Statement::Constant(Value::boolean(true)), (0, 1)),
|
||||||
position: (0, 1)
|
position: (0, 1)
|
||||||
})
|
})
|
||||||
|
@ -42,8 +42,8 @@ impl BuiltInFunction {
|
|||||||
pub fn value_parameters(&self) -> Vec<(Identifier, Type)> {
|
pub fn value_parameters(&self) -> Vec<(Identifier, Type)> {
|
||||||
match self {
|
match self {
|
||||||
BuiltInFunction::ToString => vec![("value".into(), Type::Any)],
|
BuiltInFunction::ToString => vec![("value".into(), Type::Any)],
|
||||||
BuiltInFunction::IsEven => vec![("value".into(), Type::Integer)],
|
BuiltInFunction::IsEven => vec![("value".into(), Type::Number)],
|
||||||
BuiltInFunction::IsOdd => vec![("value".into(), Type::Integer)],
|
BuiltInFunction::IsOdd => vec![("value".into(), Type::Number)],
|
||||||
BuiltInFunction::Length => {
|
BuiltInFunction::Length => {
|
||||||
vec![(
|
vec![(
|
||||||
"value".into(),
|
"value".into(),
|
||||||
|
@ -52,6 +52,7 @@ pub enum Type {
|
|||||||
item_type: Box<Type>,
|
item_type: Box<Type>,
|
||||||
},
|
},
|
||||||
Map(BTreeMap<Identifier, Type>),
|
Map(BTreeMap<Identifier, Type>),
|
||||||
|
Number,
|
||||||
Range,
|
Range,
|
||||||
String,
|
String,
|
||||||
Structure {
|
Structure {
|
||||||
@ -199,6 +200,10 @@ impl Type {
|
|||||||
return Ok(());
|
return Ok(());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
(Type::Number, Type::Number | Type::Integer | Type::Float)
|
||||||
|
| (Type::Integer | Type::Float, Type::Number) => {
|
||||||
|
return Ok(());
|
||||||
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -258,6 +263,7 @@ impl Display for Type {
|
|||||||
|
|
||||||
write!(f, " }}")
|
write!(f, " }}")
|
||||||
}
|
}
|
||||||
|
Type::Number => write!(f, "num"),
|
||||||
Type::Range => write!(f, "range"),
|
Type::Range => write!(f, "range"),
|
||||||
Type::String => write!(f, "str"),
|
Type::String => write!(f, "str"),
|
||||||
Type::Function {
|
Type::Function {
|
||||||
|
Loading…
Reference in New Issue
Block a user