hydroflow_lang 0.10.0

Hydroflow's Surface Syntax implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Hydroflow surface syntax

#![warn(missing_docs)]
#![cfg_attr(
    feature = "diagnostics",
    feature(proc_macro_diagnostic, proc_macro_span)
)]
pub mod diagnostic;
pub mod graph;
pub mod parse;
pub mod pretty_span;
pub mod process_singletons;
pub mod union_find;