mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
Made IdentProblem a thing
This commit is contained in:
parent
9bedae3ba6
commit
2a67b3fcd3
3 changed files with 36 additions and 22 deletions
|
@ -13,6 +13,8 @@ pub enum Expr {
|
|||
Func(String, Box<Expr>),
|
||||
Apply(Box<Expr>, Box<Expr>),
|
||||
Operator(Box<Expr>, Operator, Box<Expr>),
|
||||
|
||||
SyntaxProblem(String),
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue