mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 23:04:49 +00:00
Merge remote-tracking branch 'upstream/trunk' into fix-panic-on-unimported-module
This commit is contained in:
commit
40375adbb0
213 changed files with 6993 additions and 3601 deletions
|
@ -39,7 +39,7 @@ pub enum Problem {
|
|||
CyclicAlias(Symbol, Region, Vec<Symbol>),
|
||||
BadRecursion(Vec<CycleEntry>),
|
||||
PhantomTypeArgument {
|
||||
alias: Symbol,
|
||||
typ: Symbol,
|
||||
variable_region: Region,
|
||||
variable_name: Lowercase,
|
||||
},
|
||||
|
@ -155,6 +155,16 @@ pub enum RuntimeError {
|
|||
ErroneousType,
|
||||
|
||||
LookupNotInScope(Loc<Ident>, MutSet<Box<str>>),
|
||||
OpaqueNotDefined {
|
||||
usage: Loc<Ident>,
|
||||
opaques_in_scope: MutSet<Box<str>>,
|
||||
opt_defined_alias: Option<Region>,
|
||||
},
|
||||
OpaqueOutsideScope {
|
||||
opaque: Ident,
|
||||
referenced_region: Region,
|
||||
imported_region: Region,
|
||||
},
|
||||
ValueNotExposed {
|
||||
module_name: ModuleName,
|
||||
ident: Ident,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue