Merge pull request #456 from aiken-lang/clause-guard-wildcard-pattern
Add new failing test case for 048 (clause guards)
This commit is contained in:
commit
280284d4a1
|
@ -813,8 +813,13 @@ impl<'a> CodeGenerator<'a> {
|
||||||
clause_properties,
|
clause_properties,
|
||||||
);
|
);
|
||||||
|
|
||||||
let data_type =
|
if clause.pattern.is_var() || clause.pattern.is_discard() {
|
||||||
builder::lookup_data_type_by_tipo(self.data_types.clone(), subject_type);
|
ir_stack.wrap_clause(clause_pattern_stack);
|
||||||
|
} else {
|
||||||
|
let data_type = builder::lookup_data_type_by_tipo(
|
||||||
|
self.data_types.clone(),
|
||||||
|
subject_type,
|
||||||
|
);
|
||||||
|
|
||||||
if let Some(data_type) = data_type {
|
if let Some(data_type) = data_type {
|
||||||
if data_type.constructors.len() > 1 {
|
if data_type.constructors.len() > 1 {
|
||||||
|
@ -847,6 +852,7 @@ impl<'a> CodeGenerator<'a> {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
ClauseProperties::ListClause {
|
ClauseProperties::ListClause {
|
||||||
original_subject_name,
|
original_subject_name,
|
||||||
current_index,
|
current_index,
|
||||||
|
|
|
@ -286,7 +286,11 @@ pub fn rearrange_clauses(clauses: Vec<TypedClause>) -> Vec<TypedClause> {
|
||||||
// TODO: how shall tails be weighted? Since any clause after will not run
|
// TODO: how shall tails be weighted? Since any clause after will not run
|
||||||
sorted_clauses.sort_by(|clause1, clause2| {
|
sorted_clauses.sort_by(|clause1, clause2| {
|
||||||
let clause1_len = match &clause1.pattern {
|
let clause1_len = match &clause1.pattern {
|
||||||
Pattern::List { elements, tail, .. } => elements.len() + usize::from(tail.is_some()),
|
Pattern::List { elements, tail, .. } => {
|
||||||
|
elements.len() * 3
|
||||||
|
+ usize::from(tail.is_some())
|
||||||
|
+ usize::from(clause1.guard.is_some())
|
||||||
|
}
|
||||||
_ => 10000000,
|
_ => 10000000,
|
||||||
};
|
};
|
||||||
let clause2_len = match &clause2.pattern {
|
let clause2_len = match &clause2.pattern {
|
||||||
|
@ -306,7 +310,8 @@ pub fn rearrange_clauses(clauses: Vec<TypedClause>) -> Vec<TypedClause> {
|
||||||
|
|
||||||
// If we have a catch all, use that. Otherwise use todo which will result in error
|
// If we have a catch all, use that. Otherwise use todo which will result in error
|
||||||
// TODO: fill in todo label with description
|
// TODO: fill in todo label with description
|
||||||
let plug_in_then = match &sorted_clauses[sorted_clauses.len() - 1].pattern {
|
let plug_in_then = if sorted_clauses[sorted_clauses.len() - 1].guard.is_none() {
|
||||||
|
match &sorted_clauses[sorted_clauses.len() - 1].pattern {
|
||||||
Pattern::Var { name, .. } => {
|
Pattern::Var { name, .. } => {
|
||||||
assign_plug_in_name = Some(name);
|
assign_plug_in_name = Some(name);
|
||||||
sorted_clauses[sorted_clauses.len() - 1].clone().then
|
sorted_clauses[sorted_clauses.len() - 1].clone().then
|
||||||
|
@ -328,6 +333,22 @@ pub fn rearrange_clauses(clauses: Vec<TypedClause>) -> Vec<TypedClause> {
|
||||||
}),
|
}),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
let tipo = sorted_clauses[sorted_clauses.len() - 1].then.tipo();
|
||||||
|
TypedExpr::Trace {
|
||||||
|
location: Span::empty(),
|
||||||
|
tipo: tipo.clone(),
|
||||||
|
text: Box::new(TypedExpr::String {
|
||||||
|
location: Span::empty(),
|
||||||
|
tipo: crate::builtins::string(),
|
||||||
|
value: "Clause not filled".to_string(),
|
||||||
|
}),
|
||||||
|
then: Box::new(TypedExpr::ErrorTerm {
|
||||||
|
location: Span::empty(),
|
||||||
|
tipo,
|
||||||
|
}),
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
for (index, clause) in sorted_clauses.iter().enumerate() {
|
for (index, clause) in sorted_clauses.iter().enumerate() {
|
||||||
|
@ -379,6 +400,7 @@ pub fn rearrange_clauses(clauses: Vec<TypedClause>) -> Vec<TypedClause> {
|
||||||
}
|
}
|
||||||
|
|
||||||
// if we have a pattern with no clause guards and a tail then no lists will get past here to other clauses
|
// if we have a pattern with no clause guards and a tail then no lists will get past here to other clauses
|
||||||
|
if clause.guard.is_none() {
|
||||||
match &clause.pattern {
|
match &clause.pattern {
|
||||||
Pattern::Var { .. } => {
|
Pattern::Var { .. } => {
|
||||||
last_clause_index = index + 1;
|
last_clause_index = index + 1;
|
||||||
|
@ -395,10 +417,9 @@ pub fn rearrange_clauses(clauses: Vec<TypedClause>) -> Vec<TypedClause> {
|
||||||
} => {
|
} => {
|
||||||
let mut elements = elements.clone();
|
let mut elements = elements.clone();
|
||||||
elements.push(*tail.clone());
|
elements.push(*tail.clone());
|
||||||
if elements
|
if elements.iter().all(|element| {
|
||||||
.iter()
|
matches!(element, Pattern::Var { .. } | Pattern::Discard { .. })
|
||||||
.all(|element| matches!(element, Pattern::Var { .. } | Pattern::Discard { .. }))
|
}) && !last_clause_set
|
||||||
&& !last_clause_set
|
|
||||||
&& !elements.is_empty()
|
&& !elements.is_empty()
|
||||||
{
|
{
|
||||||
last_clause_index = index + 1;
|
last_clause_index = index + 1;
|
||||||
|
@ -407,6 +428,7 @@ pub fn rearrange_clauses(clauses: Vec<TypedClause>) -> Vec<TypedClause> {
|
||||||
}
|
}
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// If the last condition doesn't have a catch all or tail then add a catch all with a todo
|
// If the last condition doesn't have a catch all or tail then add a catch all with a todo
|
||||||
if index == sorted_clauses.len() - 1 {
|
if index == sorted_clauses.len() - 1 {
|
||||||
|
|
|
@ -46,27 +46,27 @@ test foo_4() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// type Seasons {
|
type Seasons {
|
||||||
// Winter
|
Winter
|
||||||
// Spring
|
Spring
|
||||||
// Summer
|
Summer
|
||||||
// Fall
|
Fall
|
||||||
// }
|
}
|
||||||
|
|
||||||
// fn is_cold(season, hour) {
|
fn is_cold(season, hour) {
|
||||||
// when season is {
|
when season is {
|
||||||
// Winter | Fall ->
|
Winter | Fall ->
|
||||||
// True
|
True
|
||||||
// _ if hour >= 18 ->
|
_ if hour >= 18 ->
|
||||||
// True
|
True
|
||||||
// _ ->
|
_ ->
|
||||||
// False
|
False
|
||||||
// }
|
}
|
||||||
// }
|
}
|
||||||
|
|
||||||
// test foo_5() {
|
test foo_5() {
|
||||||
// !is_cold(Spring, 15) && is_cold(Summer, 22)
|
!is_cold(Spring, 15) && is_cold(Summer, 22)
|
||||||
// }
|
}
|
||||||
|
|
||||||
fn when_tuple(a: (Int, Int)) -> Int {
|
fn when_tuple(a: (Int, Int)) -> Int {
|
||||||
when a is {
|
when a is {
|
||||||
|
@ -75,6 +75,6 @@ fn when_tuple(a: (Int, Int)) -> Int {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
test spend() {
|
test foo_6() {
|
||||||
when_tuple((4, 1)) == 4
|
when_tuple((4, 1)) == 4
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue