Code cleanups

This commit is contained in:
Savanni D'Gerinel 2023-09-13 15:48:46 -04:00
parent 8685faab8c
commit 94bd030958
1 changed files with 7 additions and 3 deletions

View File

@ -4,7 +4,7 @@ pub use date::Date;
// pub mod go;
mod tree;
use tree::parse_collection;
use tree::{parse_collection, Tree};
// mod game;
@ -18,8 +18,12 @@ pub enum Game {
Go(go::Game),
Unsupported(tree::Tree),
}
*/
pub fn parse_sgf(input: &str) -> Result<Vec<Game>, Error> {
pub fn parse_sgf(input: &str) -> Result<Vec<Tree>, Error> {
let (_, trees) = parse_collection::<nom::error::VerboseError<&str>>(input)?;
Ok(trees)
/*
let (_, trees) = parse_collection::<nom::error::VerboseError<&str>>(input)?;
Ok(trees
.into_iter()
@ -30,8 +34,8 @@ pub fn parse_sgf(input: &str) -> Result<Vec<Game>, Error> {
_ => Game::Unsupported(t),
})
.collect::<Vec<Game>>())
}
*/
}
/*
impl From<(&str, VerboseErrorKind)> for