Third try. ;) Concat operator, tests. Now [1,2,3] + (4..6) works! Inlined helper functions to keep core lib small.

This commit is contained in:
Kyle Marek-Spartz
2014-02-14 11:09:02 -06:00
parent edd360a934
commit e519ecbc49
3 changed files with 45 additions and 0 deletions

View File

@ -8,4 +8,19 @@ class List {
result = result + "]"
return result
}
+ that {
var newList = []
if (this.count > 0) {
for (element in this) {
newList.add(element)
}
}
if (that is Range || that.count > 0) {
for (element in that) {
newList.add(element)
}
}
return newList
}
}

View File

@ -51,6 +51,21 @@ static const char* libSource =
" result = result + \"]\"\n"
" return result\n"
" }\n"
"\n"
" + that {\n"
" var newList = []\n"
" if (this.count > 0) {\n"
" for (element in this) {\n"
" newList.add(element)\n"
" }\n"
" }\n"
" if (that is Range || that.count > 0) {\n"
" for (element in that) {\n"
" newList.add(element)\n"
" }\n"
" }\n"
" return newList\n"
" }\n"
"}\n";
// Validates that the given argument in [args] is a Num. Returns true if it is.

15
test/list/concat.wren Normal file
View File

@ -0,0 +1,15 @@
var a = [1, 2, 3]
var b = [4, 5, 6]
var c = a + b
var d = a + (4..6)
var e = a + []
var f = [] + a
var g = [] + []
IO.print(a) // expect: [1, 2, 3]
IO.print(b) // expect: [4, 5, 6]
IO.print(c) // expect: [1, 2, 3, 4, 5, 6]
IO.print(d) // expect: [1, 2, 3, 4, 5, 6]
IO.print(e) // expect: [1, 2, 3]
IO.print(f) // expect: [1, 2, 3]
IO.print(g) // expect: []