refactor: thinking in merge repos

上级 f49e2464
pub mod scie_onig; pub mod scie_onig;
\ No newline at end of file pub mod scie_scanner;
\ No newline at end of file
use crate::scie_scanner::ScieScanner;
pub struct ScieOnig { pub struct ScieOnig {
} }
impl ScieOnig { impl ScieOnig {
pub fn create_onig_scanner(sources: Vec<String>) { pub fn create_onig_scanner(sources: Vec<String>) -> ScieScanner {
ScieScanner::new()
} }
} }
pub struct ScieScanner {}
impl ScieScanner {
pub fn new() -> Self {
ScieScanner {}
}
pub fn find_next_match_sync(&self, str: String, start_position: i32) {
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册