summary refs log blame commit diff stats
path: root/src/parser.rs
blob: 0a7d858992543df11b4f9605c4611db8b5fe3b97 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                            
// TODO

use crate::PatternTypes;
use crate::errors::PatternError;
use crate::vm::PatternConstants;
//use crate::vm::PatternElement;

pub(crate) fn parse<T: PatternTypes>(s: &str) -> Result<PatternConstants<T>, PatternError> {
    unimplemented!()
}