examples/yaml: Remove unnecessary uses of todo!()

This commit is contained in:
John 2025-04-16 04:13:04 -04:00
parent 82e62ab4ac
commit 8c8f1254e0

View File

@ -3,7 +3,7 @@
use cl_ast::Stmt; use cl_ast::Stmt;
use cl_lexer::Lexer; use cl_lexer::Lexer;
use cl_parser::Parser; use cl_parser::Parser;
use repline::{error::Error as RlError, Repline}; use repline::{Repline, error::Error as RlError};
use std::error::Error; use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> { fn main() -> Result<(), Box<dyn Error>> {
@ -642,8 +642,8 @@ pub mod yamlify {
TyKind::Tuple(t) => y.yaml(t), TyKind::Tuple(t) => y.yaml(t),
TyKind::Ref(t) => y.yaml(t), TyKind::Ref(t) => y.yaml(t),
TyKind::Fn(t) => y.yaml(t), TyKind::Fn(t) => y.yaml(t),
TyKind::Slice(_) => todo!(), TyKind::Slice(t) => y.yaml(t),
TyKind::Array(_) => todo!(), TyKind::Array(t) => y.yaml(t),
}; };
} }
} }