kodept-core 0.2.8

Simple compiler with dependent types support in mind
Documentation
1
2
3
4
5
6
7
8
use crate::code_point::CodePoint;

pub mod rlt;
pub mod span;

pub trait Located {
    fn location(&self) -> CodePoint;
}