Move divide_text() into scope of impl Parser
This commit is contained in:
parent
b6d52b2616
commit
d54825de6b
1 changed files with 17 additions and 16 deletions
|
@ -109,7 +109,7 @@ impl<HP, DP> Parser<HP, DP> where
|
|||
where FD: FileData + Sized,
|
||||
DP: FileDataParser<FD>
|
||||
{
|
||||
let divided = divide_text(&s);
|
||||
let divided = self.divide_text(&s);
|
||||
|
||||
if divided.is_err() {
|
||||
return Err(divided.err().unwrap());
|
||||
|
@ -149,9 +149,8 @@ impl<HP, DP> Parser<HP, DP> where
|
|||
|
||||
Ok(h_text.ok().unwrap() + &d_text.ok().unwrap()[..])
|
||||
}
|
||||
}
|
||||
|
||||
fn divide_text(text: &String) -> Result<TextTpl, ParserError> {
|
||||
fn divide_text(&self, text: &String) -> Result<TextTpl, ParserError> {
|
||||
let re = Regex::new(r"(?m)^\-\-\-$\n(.*)^\-\-\-$\n(.*)").unwrap();
|
||||
|
||||
let captures = re.captures(&text[..]).unwrap_or(
|
||||
|
@ -171,3 +170,5 @@ fn divide_text(text: &String) -> Result<TextTpl, ParserError> {
|
|||
Ok((header, content))
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue