use super::parsing::{Function, Functions, Identifier, Identifiers};
pub struct Rustlike {}
impl Functions for Rustlike {
fn read_functions(&self, _text: &str) -> Vec<Function> {
todo!("implement this");
}
}
impl Identifiers for Rustlike {
fn read_identifiers(&self, _text: &str) -> Vec<Identifier> {
todo!("implement this");
}
}