aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
blob: dc27a3224c7baeb131ecc34969d61e2e1e06e19a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use shirabe_semver::constraint::constraint_interface::ConstraintInterface;

#[derive(Debug)]
pub struct CompilingMatcher;

impl CompilingMatcher {
    pub fn r#match(_constraint: &dyn ConstraintInterface, _package: &dyn std::any::Any) -> bool {
        todo!()
    }

    pub fn matches(_constraint: &dyn ConstraintInterface, _operator: i64, _version: &str) -> bool {
        todo!()
    }

    pub fn match_(_constraint: &dyn ConstraintInterface, _operator: i64, _version: &str) -> bool {
        todo!()
    }

    pub fn clear() {
        todo!()
    }
}