aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/composer/semver/compiling_matcher.rs
blob: b113f71cd5ea88ae15259b964721c386dde04e45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! ref: composer/vendor/composer/semver/src/CompilingMatcher.php

use shirabe_semver::constraint::AnyConstraint;

#[derive(Debug)]
pub struct CompilingMatcher;

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

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

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

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