2010-12-29 00:48:54 -05:00
|
|
|
# Comprehensions
|
|
|
|
# --------------
|
|
|
|
|
2010-12-29 14:06:57 -05:00
|
|
|
# * Array Comprehensions
|
|
|
|
# * Range Comprehensions
|
|
|
|
# * Object Comprehensions
|
2011-01-03 04:17:00 -05:00
|
|
|
# * Implicit Destructuring Assignment
|
2010-12-29 14:06:57 -05:00
|
|
|
# * Comprehensions with Nonstandard Step
|
|
|
|
|
2010-12-29 00:48:54 -05:00
|
|
|
# TODO: refactor comprehension tests
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Basic array comprehensions.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
nums = (n * n for n in [1, 2, 3] when n & 1)
|
|
|
|
results = (n * 2 for n in nums)
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok results.join(',') is '2,18'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Basic object comprehensions.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
obj = {one: 1, two: 2, three: 3}
|
|
|
|
names = (prop + '!' for prop of obj)
|
|
|
|
odds = (prop + '!' for prop, value of obj when value & 1)
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok names.join(' ') is "one! two! three!"
|
|
|
|
ok odds.join(' ') is "one! three!"
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Basic range comprehensions.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
nums = (i * 3 for i in [1..3])
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
negs = (x for x in [-20..-5*2])
|
|
|
|
negs = negs[0..2]
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
result = nums.concat(negs).join(', ')
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok result is '3, 6, 9, -20, -19, -18'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "With range comprehensions, you can loop in steps.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
results = (x for x in [0...15] by 5)
|
|
|
|
ok results.join(' ') is '0 5 10'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
results = (x for x in [0..100] by 10)
|
|
|
|
ok results.join(' ') is '0 10 20 30 40 50 60 70 80 90 100'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "And can loop downwards, with a negative step.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
results = (x for x in [5..1])
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok results.join(' ') is '5 4 3 2 1'
|
|
|
|
ok results.join(' ') is [(10-5)..(-2+3)].join(' ')
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
results = (x for x in [10..1])
|
|
|
|
ok results.join(' ') is [10..1].join(' ')
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
results = (x for x in [10...0] by -2)
|
|
|
|
ok results.join(' ') is [10, 8, 6, 4, 2].join(' ')
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Range comprehension gymnastics.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
eq "#{i for i in [5..1]}", '5,4,3,2,1'
|
|
|
|
eq "#{i for i in [5..-5] by -5}", '5,0,-5'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
a = 6
|
|
|
|
b = 0
|
|
|
|
c = -2
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
eq "#{i for i in [a..b]}", '6,5,4,3,2,1,0'
|
|
|
|
eq "#{i for i in [a..b] by c}", '6,4,2,0'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Multiline array comprehension with filter.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
evens = for num in [1, 2, 3, 4, 5, 6] when not (num & 1)
|
|
|
|
num *= -1
|
|
|
|
num -= 2
|
|
|
|
num * -1
|
|
|
|
eq evens + '', '4,6,8'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "The in operator still works, standalone.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok 2 of evens
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "all isn't reserved.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
all = 1
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Ensure that the closure wrapper preserves local variables.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
obj = {}
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
for method in ['one', 'two', 'three'] then do (method) ->
|
|
|
|
obj[method] = ->
|
|
|
|
"I'm " + method
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok obj.one() is "I'm one"
|
|
|
|
ok obj.two() is "I'm two"
|
|
|
|
ok obj.three() is "I'm three"
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Index values at the end of a loop.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
i = 0
|
|
|
|
for i in [1..3]
|
|
|
|
-> 'func'
|
|
|
|
break if false
|
|
|
|
ok i is 4
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Ensure that local variables are closed over for range comprehensions.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
funcs = for i in [1..3]
|
|
|
|
do (i) ->
|
|
|
|
-> -i
|
|
|
|
|
|
|
|
eq (func() for func in funcs).join(' '), '-1 -2 -3'
|
|
|
|
ok i is 4
|
|
|
|
|
|
|
|
|
|
|
|
test "Even when referenced in the filter.", ->
|
|
|
|
|
|
|
|
list = ['one', 'two', 'three']
|
|
|
|
|
|
|
|
methods = for num, i in list when num isnt 'two' and i isnt 1
|
|
|
|
do (num, i) ->
|
|
|
|
-> num + ' ' + i
|
|
|
|
|
|
|
|
ok methods.length is 2
|
|
|
|
ok methods[0]() is 'one 0'
|
|
|
|
ok methods[1]() is 'three 2'
|
|
|
|
|
|
|
|
|
|
|
|
test "Even a convoluted one.", ->
|
|
|
|
|
|
|
|
funcs = []
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
for i in [1..3]
|
|
|
|
do (i) ->
|
|
|
|
x = i * 2
|
|
|
|
((z)->
|
|
|
|
funcs.push -> z + ' ' + i
|
|
|
|
)(x)
|
|
|
|
|
|
|
|
ok (func() for func in funcs).join(', ') is '2 1, 4 2, 6 3'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
funcs = []
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
results = for i in [1..3]
|
2010-12-29 00:48:54 -05:00
|
|
|
do (i) ->
|
2011-03-11 22:05:52 -05:00
|
|
|
z = (x * 3 for x in [1..i])
|
|
|
|
((a, b, c) -> [a, b, c].join(' ')).apply this, z
|
|
|
|
|
|
|
|
ok results.join(', ') is '3 , 3 6 , 3 6 9'
|
|
|
|
|
|
|
|
|
|
|
|
test "Naked ranges are expanded into arrays.", ->
|
|
|
|
|
|
|
|
array = [0..10]
|
|
|
|
ok(num % 2 is 0 for num in array by 2)
|
|
|
|
|
|
|
|
|
|
|
|
test "Nested shared scopes.", ->
|
|
|
|
|
|
|
|
foo = ->
|
|
|
|
for i in [0..7]
|
|
|
|
do (i) ->
|
|
|
|
for j in [0..7]
|
|
|
|
do (j) ->
|
|
|
|
-> i + j
|
|
|
|
|
|
|
|
eq foo()[3][4](), 7
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Scoped loop pattern matching.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
a = [[0], [1]]
|
|
|
|
funcs = []
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
for [v] in a
|
|
|
|
do (v) ->
|
|
|
|
funcs.push -> v
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
eq funcs[0](), 0
|
|
|
|
eq funcs[1](), 1
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Nested comprehensions.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
multiLiner =
|
|
|
|
for x in [3..5]
|
|
|
|
for y in [3..5]
|
|
|
|
[x, y]
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
singleLiner =
|
|
|
|
(([x, y] for y in [3..5]) for x in [3..5])
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok multiLiner.length is singleLiner.length
|
|
|
|
ok 5 is multiLiner[2][2][1]
|
|
|
|
ok 5 is singleLiner[2][2][1]
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Comprehensions within parentheses.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
result = null
|
|
|
|
store = (obj) -> result = obj
|
|
|
|
store (x * 2 for x in [3, 2, 1])
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok result.join(' ') is '6 4 2'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Closure-wrapped comprehensions that refer to the 'arguments' object.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
expr = ->
|
|
|
|
result = (item * item for item in arguments)
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok expr(2, 4, 8).join(' ') is '4 16 64'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Fast object comprehensions over all properties, including prototypal ones.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
class Cat
|
|
|
|
constructor: -> @name = 'Whiskers'
|
|
|
|
breed: 'tabby'
|
|
|
|
hair: 'cream'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
whiskers = new Cat
|
|
|
|
own = (value for own key, value of whiskers)
|
|
|
|
all = (value for key, value of whiskers)
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok own.join(' ') is 'Whiskers'
|
|
|
|
ok all.sort().join(' ') is 'Whiskers cream tabby'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Optimized range comprehensions.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
exxes = ('x' for [0...10])
|
|
|
|
ok exxes.join(' ') is 'x x x x x x x x x x'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Comprehensions safely redeclare parameters if they're not present in closest scope.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
rule = (x) -> x
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
learn = ->
|
|
|
|
rule for rule in [1, 2, 3]
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok learn().join(' ') is '1 2 3'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok rule(101) is 101
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
f = -> [-> ok no, 'should cache source']
|
|
|
|
ok yes for k of [f] = f()
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Lenient on pure statements not trying to reach out of the closure", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
val = for i in [1]
|
|
|
|
for j in [] then break
|
|
|
|
i
|
|
|
|
ok val[0] is i
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Comprehensions only wrap their last line in a closure, allowing other lines
|
|
|
|
to have pure expressions in them.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
func = -> for i in [1]
|
|
|
|
break if i is 2
|
|
|
|
j for j in [1]
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok func()[0][0] is 1
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
i = 6
|
|
|
|
odds = while i--
|
|
|
|
continue unless i & 1
|
|
|
|
i
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
ok odds.join(', ') is '5, 3, 1'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Issue #897: Ensure that plucked function variables aren't leaked.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
facets = {}
|
|
|
|
list = ['one', 'two']
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
(->
|
|
|
|
for entity in list
|
|
|
|
facets[entity] = -> entity
|
|
|
|
)()
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
eq typeof entity, 'undefined'
|
|
|
|
eq facets['two'](), 'two'
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Issue #905. Soaks as the for loop subject.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
a = {b: {c: [1, 2, 3]}}
|
|
|
|
for d in a.b?.c
|
|
|
|
e = d
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
eq e, 3
|
2010-12-29 00:48:54 -05:00
|
|
|
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
test "Issue #948. Capturing loop variables.", ->
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
funcs = []
|
|
|
|
list = ->
|
|
|
|
[1, 2, 3]
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
for y in list()
|
|
|
|
do (y) ->
|
|
|
|
z = y
|
|
|
|
funcs.push -> "y is #{y} and z is #{z}"
|
2010-12-29 00:48:54 -05:00
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
eq funcs[1](), "y is 2 and z is 2"
|
|
|
|
|
|
|
|
|
|
|
|
test "Cancel the comprehension if there's a jump inside the loop.", ->
|
|
|
|
|
|
|
|
result = try
|
|
|
|
for i in [0...10]
|
|
|
|
continue if i < 5
|
|
|
|
i
|
|
|
|
|
|
|
|
eq result, 10
|
|
|
|
|
|
|
|
|
|
|
|
test "Comprehensions over break.", ->
|
|
|
|
|
|
|
|
arrayEq (break for [1..10]), []
|
|
|
|
|
|
|
|
|
|
|
|
test "Comprehensions over continue.", ->
|
|
|
|
|
|
|
|
arrayEq (continue for [1..10]), []
|
|
|
|
|
|
|
|
|
|
|
|
test "Comprehensions over function literals.", ->
|
|
|
|
|
|
|
|
a = 0
|
|
|
|
for f in [-> a = 1]
|
|
|
|
do (f) ->
|
|
|
|
do f
|
|
|
|
|
|
|
|
eq a, 1
|
|
|
|
|
|
|
|
|
|
|
|
test "Comprehensions that mention arguments.", ->
|
|
|
|
|
|
|
|
list = [arguments: 10]
|
|
|
|
args = for f in list
|
|
|
|
do (f) ->
|
|
|
|
f.arguments
|
|
|
|
eq args[0], 10
|
2011-01-01 23:35:05 -05:00
|
|
|
|
|
|
|
|
|
|
|
test "expression conversion under explicit returns", ->
|
|
|
|
nonce = {}
|
|
|
|
fn = ->
|
|
|
|
return (nonce for x in [1,2,3])
|
|
|
|
arrayEq [nonce,nonce,nonce], fn()
|
|
|
|
fn = ->
|
|
|
|
return [nonce for x in [1,2,3]][0]
|
|
|
|
arrayEq [nonce,nonce,nonce], fn()
|
|
|
|
fn = ->
|
|
|
|
return [(nonce for x in [1..3])][0]
|
|
|
|
arrayEq [nonce,nonce,nonce], fn()
|
2011-01-03 04:17:00 -05:00
|
|
|
|
|
|
|
|
|
|
|
test "implicit destructuring assignment in object of objects", ->
|
|
|
|
a={}; b={}; c={}
|
|
|
|
obj = {
|
|
|
|
a: { d: a },
|
|
|
|
b: { d: b }
|
|
|
|
c: { d: c }
|
|
|
|
}
|
|
|
|
result = ([y,z] for y, { d: z } of obj)
|
|
|
|
arrayEq [['a',a],['b',b],['c',c]], result
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
|
2011-01-03 04:17:00 -05:00
|
|
|
test "implicit destructuring assignment in array of objects", ->
|
|
|
|
a={}; b={}; c={}; d={}; e={}; f={}
|
|
|
|
arr = [
|
|
|
|
{ a: a, b: { c: b } },
|
|
|
|
{ a: c, b: { c: d } },
|
|
|
|
{ a: e, b: { c: f } }
|
|
|
|
]
|
|
|
|
result = ([y,z] for { a: y, b: { c: z } } in arr)
|
|
|
|
arrayEq [[a,b],[c,d],[e,f]], result
|
|
|
|
|
2011-03-11 22:05:52 -05:00
|
|
|
|
2011-01-03 04:17:00 -05:00
|
|
|
test "implicit destructuring assignment in array of arrays", ->
|
|
|
|
a={}; b={}; c={}; d={}; e={}; f={}
|
|
|
|
arr = [[a, [b]], [c, [d]], [e, [f]]]
|
|
|
|
result = ([y,z] for [y, [z]] in arr)
|
|
|
|
arrayEq [[a,b],[c,d],[e,f]], result
|