mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
Str.concat tests and definition set up
This commit is contained in:
parent
27b2d10b2a
commit
a81504720b
7 changed files with 68 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
|||
/// into an Expr when added directly by can::builtins
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
|
||||
pub enum LowLevel {
|
||||
StrConcat,
|
||||
ListLen,
|
||||
ListGetUnsafe,
|
||||
ListSet,
|
||||
|
|
|
@ -652,6 +652,7 @@ define_builtins! {
|
|||
1 STR_AT_STR: "@Str" // the Str.@Str private tag
|
||||
2 STR_ISEMPTY: "isEmpty"
|
||||
3 STR_APPEND: "append"
|
||||
4 STR_CONCAT: "concat"
|
||||
}
|
||||
4 LIST: "List" => {
|
||||
0 LIST_LIST: "List" imported // the List.List type alias
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue