Test monomorphizing string literals

This commit is contained in:
Richard Feldman 2024-11-08 21:07:18 -05:00
parent 7b80489772
commit 8b73efc2ec
No known key found for this signature in database
GPG key ID: DAC334802F365236
7 changed files with 173 additions and 39 deletions

View file

@ -5,6 +5,7 @@ mod help_parse;
mod help_solve;
mod help_specialize;
pub use deindent::trim_and_deindent;
pub use help_can::{CanExpr, CanExprOut};
pub use help_parse::ParseExpr;
pub use help_solve::{SolvedExpr, SolvedExprOut};
@ -17,7 +18,3 @@ pub fn can_expr<'a>(input: &'a str) -> CanExprOut {
pub fn solve_expr<'a>(input: &'a str) -> SolvedExprOut {
SolvedExpr::default().solve_expr(input)
}
pub fn specialize_expr<'a>(input: &'a str) -> SpecializedExprOut {
SpecializedExpr::default().specialize_expr(input)
}