diff options
Diffstat (limited to 'src/pattern.rs')
-rw-r--r-- | src/pattern.rs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/pattern.rs b/src/pattern.rs index 0368a88..2b99163 100644 --- a/src/pattern.rs +++ b/src/pattern.rs @@ -1,4 +1,5 @@ use crate::PatternTypes; +use crate::RefOwn; use crate::errors::PatternError; use crate::parser::parse; use crate::vm::Matcher; @@ -10,16 +11,16 @@ pub struct Pattern<T: PatternTypes> { } impl<T: PatternTypes> Pattern<T> { - pub fn compile(s: &str) -> Result<Self, PatternError> { + pub fn compile(s: &str, defs: Option<()>/*TODO*/) -> Result<Self, PatternError> { Ok(Self { - consts: parse(s)? + consts: parse(s, defs)? }) } pub fn attempt_match<'a, 'b>( &'a self, - value: &'b T::Value + value: impl Into<RefOwn<'b, T::Ref, T::Own>> ) -> Matcher<'a, 'b, T> { - Matcher::new(value, &self.consts, self.consts.protos.len() - 1, MAX_CALLS).ok().expect("datafu internal error: MAX_CALLS must not be 0") + Matcher::new(value.into(), &self.consts, self.consts.protos.len() - 1, MAX_CALLS).ok().expect("datafu internal error: MAX_CALLS must not be 0") } } |