mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 15:03:46 +00:00
switch from type annotation to type variable
This commit is contained in:
parent
8f4945f286
commit
6302a8d4b5
11 changed files with 136 additions and 97 deletions
|
@ -15,6 +15,7 @@ use roc_module::symbol::{Interns, Symbol};
|
|||
use roc_region::all::{Loc, Region};
|
||||
use std::fmt;
|
||||
use std::fmt::Write;
|
||||
use std::path::Path;
|
||||
|
||||
pub const TYPE_NUM: &str = "Num";
|
||||
pub const TYPE_INTEGER: &str = "Integer";
|
||||
|
@ -3781,7 +3782,7 @@ pub enum Category {
|
|||
List,
|
||||
Str,
|
||||
Character,
|
||||
IngestedFile,
|
||||
IngestedFile(Box<Path>),
|
||||
|
||||
// records
|
||||
Record,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue