mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
fixing formatting and adding str_trim_left back to solve_expr
This commit is contained in:
parent
9d1038cd9b
commit
1f74fd6856
2 changed files with 2 additions and 3 deletions
|
@ -17,7 +17,7 @@ use crate::llvm::build_list::{
|
||||||
use crate::llvm::build_str::{
|
use crate::llvm::build_str::{
|
||||||
empty_str, str_concat, str_count_graphemes, str_ends_with, str_from_float, str_from_int,
|
empty_str, str_concat, str_count_graphemes, str_ends_with, str_from_float, str_from_int,
|
||||||
str_from_utf8, str_from_utf8_range, str_join_with, str_number_of_bytes, str_repeat, str_split,
|
str_from_utf8, str_from_utf8_range, str_join_with, str_number_of_bytes, str_repeat, str_split,
|
||||||
str_starts_with, str_starts_with_code_point, str_to_utf8, str_trim,
|
str_starts_with, str_starts_with_code_point, str_to_utf8, str_trim, str_trim_left
|
||||||
};
|
};
|
||||||
use crate::llvm::compare::{generic_eq, generic_neq};
|
use crate::llvm::compare::{generic_eq, generic_neq};
|
||||||
use crate::llvm::convert::{
|
use crate::llvm::convert::{
|
||||||
|
|
|
@ -3756,8 +3756,7 @@ mod solve_expr {
|
||||||
"Str -> Str",
|
"Str -> Str",
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn list_take_first() {
|
fn list_take_first() {
|
||||||
infer_eq_without_problem(
|
infer_eq_without_problem(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue