protospec-build 0.3.0

One binary format language to rule them all, One binary format language to find them, One binary format language to bring them all and in the darkness bind them.
Documentation
use crate::ast;
use crate::ImportResolver;
use crate::Span;
use crate::{asg::*, ScalarType};
use ast::Node;
use indexmap::IndexMap;
use std::cell::{Cell, RefCell};
use std::fmt;
use std::{sync::Arc, unimplemented};

mod error;
pub use error::*;

mod partial_type;
pub use partial_type::*;

mod scope;
use scope::*;

mod program;

mod resolve;

mod convert;