Signed-off-by: Sean Young <sean@mess.org>
@@ -1,6 +1,7 @@
+
use ast;
-use cfg;
use resolver;
+use resolver::cfg;
use std::str;
use std::path::Path;
@@ -15,7 +15,6 @@ extern crate inkwell;
use clap::{App, Arg};
mod ast;
-mod cfg;
mod emit;
mod link;
mod output;
@@ -1,10 +1,11 @@
use output::{Note, Output};
use serde::Serialize;
use std::collections::HashMap;
+pub mod cfg;
#[derive(Serialize)]
pub struct ABIParam {
pub name: String,