mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 23:04:49 +00:00
Fix warnings in specialize_types
This commit is contained in:
parent
2e96aca0fd
commit
2974dcbc18
17 changed files with 52 additions and 56 deletions
|
@ -11,10 +11,10 @@ pub use help_parse::ParseExpr;
|
|||
pub use help_solve::{SolvedExpr, SolvedExprOut};
|
||||
pub use help_specialize::{SpecializedExpr, SpecializedExprOut};
|
||||
|
||||
pub fn can_expr<'a>(input: &'a str) -> CanExprOut {
|
||||
pub fn can_expr(input: &str) -> CanExprOut {
|
||||
CanExpr::default().can_expr(input)
|
||||
}
|
||||
|
||||
pub fn solve_expr<'a>(input: &'a str) -> SolvedExprOut {
|
||||
pub fn solve_expr(input: &str) -> SolvedExprOut {
|
||||
SolvedExpr::default().solve_expr(input)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue