Tuple types
This commit is contained in:
parent
e56a56693c
commit
02134f542c
|
@ -4,6 +4,7 @@ use std::{error::Error, fmt::Display};
|
||||||
|
|
||||||
use chumsky::{
|
use chumsky::{
|
||||||
prelude::{choice, end, just, none_of, one_of, Simple},
|
prelude::{choice, end, just, none_of, one_of, Simple},
|
||||||
|
recursive::recursive,
|
||||||
text::{ident, int, keyword, whitespace},
|
text::{ident, int, keyword, whitespace},
|
||||||
Parser,
|
Parser,
|
||||||
};
|
};
|
||||||
|
@ -483,7 +484,11 @@ fn parse_literal(_m: &ParserMeta) -> impl Parser<char, Expr, Error = Simple<char
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_type(m: &ParserMeta) -> impl Parser<char, Type, Error = Simple<char>> {
|
fn parse_type(m: &ParserMeta) -> impl Parser<char, Type, Error = Simple<char>> {
|
||||||
parse_named_type(m).repeated().at_least(1).map(|types| {
|
recursive(|rec| {
|
||||||
|
choice((parse_named_type(m), parse_tuple_type(m, rec)))
|
||||||
|
.repeated()
|
||||||
|
.at_least(1)
|
||||||
|
.map(|types| {
|
||||||
types
|
types
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.reduce(|l, r| Type::Application {
|
.reduce(|l, r| Type::Application {
|
||||||
|
@ -492,12 +497,29 @@ fn parse_type(m: &ParserMeta) -> impl Parser<char, Type, Error = Simple<char>> {
|
||||||
})
|
})
|
||||||
.unwrap()
|
.unwrap()
|
||||||
})
|
})
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_named_type(_m: &ParserMeta) -> impl Parser<char, Type, Error = Simple<char>> {
|
fn parse_named_type(_m: &ParserMeta) -> impl Parser<char, Type, Error = Simple<char>> {
|
||||||
ident().then_ignore(whitespace()).map(Type::Named)
|
ident().then_ignore(whitespace()).map(Type::Named)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn parse_tuple_type(
|
||||||
|
_m: &ParserMeta,
|
||||||
|
rec: impl Parser<char, Type, Error = Simple<char>>,
|
||||||
|
) -> impl Parser<char, Type, Error = Simple<char>> {
|
||||||
|
rec.separated_by(just(',').then(whitespace()))
|
||||||
|
.allow_trailing()
|
||||||
|
.delimited_by(just('(').then(whitespace()), just(')').then(whitespace()))
|
||||||
|
.map(|types| {
|
||||||
|
if types.len() == 1 {
|
||||||
|
types.into_iter().next().unwrap()
|
||||||
|
} else {
|
||||||
|
Type::Tuple(types)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
fn parse_pattern(m: &ParserMeta) -> impl Parser<char, Pattern, Error = Simple<char>> {
|
fn parse_pattern(m: &ParserMeta) -> impl Parser<char, Pattern, Error = Simple<char>> {
|
||||||
// TODO: add all the patterns
|
// TODO: add all the patterns
|
||||||
choice((parse_capture_pattern(m),))
|
choice((parse_capture_pattern(m),))
|
||||||
|
|
Loading…
Reference in a new issue