reic 0.1.0

A compiler that just works
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::expr::Content;
use serde_derive::{Deserialize, Serialize};

// ---------------
// AST
// ---------------

const DEFAULT_NAME: &'static str = "content";

/// Each AST is basically a content nonterminal
/// A rei project is always a content nonterm??
pub type AST = Content;

// Function to walk AST for type checking of Identifiers and stuff
// If possible, with borrowing too
// And ownership