mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
Get it all to compile!
This commit is contained in:
parent
555478cdf0
commit
8272ea876f
21 changed files with 217 additions and 21 deletions
|
@ -172,6 +172,11 @@ pub enum RuntimeError {
|
|||
VoidValue,
|
||||
|
||||
ExposedButNotDefined(Symbol),
|
||||
|
||||
/// where ''
|
||||
EmptySingleQuote(Region),
|
||||
/// where 'aa'
|
||||
MulitpleCharsInSingleQuote(Region),
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy, Debug, PartialEq)]
|
||||
|
@ -182,4 +187,6 @@ pub enum MalformedPatternProblem {
|
|||
Unknown,
|
||||
QualifiedIdentifier,
|
||||
BadIdent(roc_parse::ident::BadIdent),
|
||||
EmptySingleQuote,
|
||||
MulitpleCharsInSingleQuote,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue