mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
use IdentStr
This commit is contained in:
parent
bd35770e9a
commit
ceb5cc66fa
30 changed files with 241 additions and 219 deletions
|
@ -1,4 +1,3 @@
|
|||
use inlinable_string::InlinableString;
|
||||
use roc_collections::all::MutSet;
|
||||
use roc_module::ident::{Ident, Lowercase, ModuleName, TagName};
|
||||
use roc_module::operator::BinOp;
|
||||
|
@ -135,14 +134,14 @@ pub enum RuntimeError {
|
|||
UnresolvedTypeVar,
|
||||
ErroneousType,
|
||||
|
||||
LookupNotInScope(Located<InlinableString>, MutSet<Box<str>>),
|
||||
LookupNotInScope(Located<Ident>, MutSet<Box<str>>),
|
||||
ValueNotExposed {
|
||||
module_name: ModuleName,
|
||||
ident: InlinableString,
|
||||
ident: Ident,
|
||||
region: Region,
|
||||
},
|
||||
ModuleNotImported {
|
||||
module_name: InlinableString,
|
||||
module_name: ModuleName,
|
||||
imported_modules: MutSet<Box<str>>,
|
||||
region: Region,
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue