Allow exprs+bindings to optionally be ascripted
This commit is contained in:
parent
3dff189499
commit
f8beda81fb
6 changed files with 264 additions and 38 deletions
|
|
@ -5,9 +5,11 @@ use nom::{alt, char, complete, do_parse, many0, named, separated_list0, tag};
|
|||
#[macro_use]
|
||||
mod macros;
|
||||
mod expr;
|
||||
mod type_;
|
||||
|
||||
use crate::ast::{Decl, Fun, Ident};
|
||||
pub use expr::expr;
|
||||
pub use type_::type_;
|
||||
|
||||
pub type Error = nom::Err<nom::error::Error<String>>;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue