aboutsummaryrefslogtreecommitdiff
path: root/src/parser/mod.rs
blob: da902e2b7ea77515b763e6602115ba10d7c227b1 (plain)
1
2
3
4
5
use {Token, File};

pub fn parse(tokens: &[Token]) -> File {
    unimplemented!()
}