chore: fix some stuff after rebase

This commit is contained in:
rvcas
2022-11-08 17:47:18 -05:00
committed by Lucas
parent 6c6aefd1c4
commit 3787cce275
8 changed files with 41 additions and 44 deletions

View File

@@ -4,7 +4,7 @@ use std::{
path::{Path, PathBuf},
};
use aiken_lang::{error::ParseError, parser::ast::Span, tipo};
use aiken_lang::{ast::Span, parser::error::ParseError, tipo};
use miette::{Diagnostic, EyreContext, LabeledSpan, MietteHandlerOpts, RgbColors, SourceCode};
#[allow(dead_code)]

View File

@@ -347,10 +347,10 @@ impl Project {
if VALIDATOR_NAMES.contains(&name.as_str()) {
let mut generator = CodeGenerator::new(
&functions,
&type_aliases,
// &type_aliases,
&data_types,
&imports,
&constants,
// &imports,
// &constants,
);
let program = generator.generate(body, arguments);