make progress on list deconstruction with IR

This commit is contained in:
Kasey White
2022-11-26 22:42:50 -05:00
committed by Lucas
parent 2a00b896fc
commit abe29a3883
6 changed files with 1106 additions and 198 deletions

View File

@@ -14,7 +14,8 @@ use aiken_lang::{
ast::{Definition, Function, ModuleKind, TypedFunction},
builtins,
tipo::TypeInfo,
uplc::{CodeGenerator, DataTypeKey, FunctionAccessKey},
uplc::{DataTypeKey, FunctionAccessKey},
uplc_two::CodeGenerator,
IdGenerator,
};
use miette::NamedSource;
@@ -372,6 +373,7 @@ impl Project {
&data_types,
// &imports,
// &constants,
&self.module_types,
);
let program = generator.generate(body, arguments);