mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
merge merge merge
This commit is contained in:
parent
9ce39cd633
commit
f31c6d7a9f
2 changed files with 47 additions and 29 deletions
|
@ -381,6 +381,7 @@ pub enum EExpr<'a> {
|
|||
If(If<'a>, Row, Col),
|
||||
|
||||
Lambda(ELambda<'a>, Row, Col),
|
||||
List(List<'a>, Row, Col),
|
||||
|
||||
// EInParens(PInParens<'a>, Row, Col),
|
||||
IndentStart(Row, Col),
|
||||
|
@ -403,6 +404,18 @@ pub enum ELambda<'a> {
|
|||
IndentArg(Row, Col),
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub enum List<'a> {
|
||||
Open(Row, Col),
|
||||
End(Row, Col),
|
||||
Space(BadInputError, Row, Col),
|
||||
|
||||
Syntax(&'a SyntaxError<'a>, Row, Col),
|
||||
|
||||
IndentStart(Row, Col),
|
||||
IndentEnd(Row, Col),
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub enum When<'a> {
|
||||
Space(BadInputError, Row, Col),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue