Skip to content

Commit

Permalink
checkpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
MicroProofs authored and rvcas committed Nov 30, 2022
1 parent 55a6b64 commit fea29a1
Show file tree
Hide file tree
Showing 3 changed files with 265 additions and 53 deletions.
6 changes: 6 additions & 0 deletions crates/lang/src/ir.rs
Expand Up @@ -96,6 +96,10 @@ pub enum IR {
count: usize,
},

Lam {
name: String,
},

// Try {
// tipo: Arc<Type>,
// value: Box<Self>,
Expand All @@ -104,6 +108,7 @@ pub enum IR {
// },
When {
count: usize,
tipo: Arc<Type>,
subject_name: String,
},

Expand Down Expand Up @@ -136,6 +141,7 @@ pub enum IR {

FieldsExpose {
count: usize,
indices: Vec<usize>,
},

// ModuleSelect {
Expand Down

0 comments on commit fea29a1

Please sign in to comment.