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'
|
2013-02-01 20:23:14 -05:00
|
|
|
|
|
|
|
|
2015-01-09 20:31:56 -05:00
|
|
|
test "#3671: Allow step in optimized range comprehensions.", ->
|
|
|
|
|
|
|
|
exxes = ('x' for [0...10] by 2)
|
|
|
|
eq exxes.join(' ') , 'x x x x x'
|
|
|
|
|
|
|
|
|
|
|
|
test "#3671: Disallow guard in optimized range comprehensions.", ->
|
|
|
|
|
|
|
|
throws -> CoffeeScript.compile "exxes = ('x' for [0...10] when a)"
|
|
|
|
|
|
|
|
|
2012-04-24 15:39:22 -04:00
|
|
|
test "Loop variables should be able to reference outer variables", ->
|
|
|
|
outer = 1
|
|
|
|
do ->
|
|
|
|
null for outer in [1, 2, 3]
|
|
|
|
eq outer, 3
|
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
|
2011-03-28 17:16:49 -04:00
|
|
|
|
|
|
|
test "issue #1124: don't assign a variable in two scopes", ->
|
|
|
|
lista = [1, 2, 3, 4, 5]
|
|
|
|
listb = (_i + 1 for _i in lista)
|
|
|
|
arrayEq [2, 3, 4, 5, 6], listb
|
2011-05-04 13:12:05 -04:00
|
|
|
|
2011-05-06 23:10:46 -04:00
|
|
|
test "#1326: `by` value is uncached", ->
|
2011-05-04 13:12:05 -04:00
|
|
|
a = [0,1,2]
|
|
|
|
fi = gi = hi = 0
|
|
|
|
f = -> ++fi
|
|
|
|
g = -> ++gi
|
|
|
|
h = -> ++hi
|
2011-05-06 23:10:46 -04:00
|
|
|
|
2011-05-04 13:12:05 -04:00
|
|
|
forCompile = []
|
|
|
|
rangeCompileSimple = []
|
2011-05-06 23:10:46 -04:00
|
|
|
|
2011-05-04 13:12:05 -04:00
|
|
|
#exercises For.compile
|
2013-02-01 20:23:14 -05:00
|
|
|
for v, i in a by f()
|
|
|
|
forCompile.push i
|
2011-05-06 23:10:46 -04:00
|
|
|
|
2011-05-04 13:12:05 -04:00
|
|
|
#exercises Range.compileSimple
|
|
|
|
rangeCompileSimple = (i for i in [0..2] by g())
|
|
|
|
|
|
|
|
arrayEq a, forCompile
|
|
|
|
arrayEq a, rangeCompileSimple
|
|
|
|
#exercises Range.compile
|
2011-05-06 23:10:46 -04:00
|
|
|
eq "#{i for i in [0..2] by h()}", '0,1,2'
|
2011-09-06 23:13:23 -04:00
|
|
|
|
|
|
|
test "#1669: break/continue should skip the result only for that branch", ->
|
|
|
|
ns = for n in [0..99]
|
|
|
|
if n > 9
|
|
|
|
break
|
|
|
|
else if n & 1
|
|
|
|
continue
|
|
|
|
else
|
|
|
|
n
|
|
|
|
eq "#{ns}", '0,2,4,6,8'
|
|
|
|
|
|
|
|
# `else undefined` is implied.
|
|
|
|
ns = for n in [1..9]
|
|
|
|
if n % 2
|
|
|
|
continue unless n % 5
|
|
|
|
n
|
|
|
|
eq "#{ns}", "1,,3,,,7,,9"
|
|
|
|
|
|
|
|
# Ditto.
|
|
|
|
ns = for n in [1..9]
|
|
|
|
switch
|
|
|
|
when n % 2
|
|
|
|
continue unless n % 5
|
|
|
|
n
|
|
|
|
eq "#{ns}", "1,,3,,,7,,9"
|
2011-11-10 16:56:49 -05:00
|
|
|
|
|
|
|
test "#1850: inner `for` should not be expression-ized if `return`ing", ->
|
|
|
|
eq '3,4,5', do ->
|
|
|
|
for a in [1..9] then \
|
|
|
|
for b in [1..9]
|
|
|
|
c = Math.sqrt a*a + b*b
|
|
|
|
return String [a, b, c] unless c % 1
|
2011-12-21 14:06:34 -05:00
|
|
|
|
|
|
|
test "#1910: loop index should be mutable within a loop iteration and immutable between loop iterations", ->
|
|
|
|
n = 1
|
|
|
|
iterations = 0
|
|
|
|
arr = [0..n]
|
|
|
|
for v, k in arr
|
|
|
|
++iterations
|
|
|
|
v = k = 5
|
|
|
|
eq 5, k
|
|
|
|
eq 2, k
|
|
|
|
eq 2, iterations
|
|
|
|
|
|
|
|
iterations = 0
|
|
|
|
for v in [0..n]
|
|
|
|
++iterations
|
|
|
|
eq 2, k
|
|
|
|
eq 2, iterations
|
|
|
|
|
|
|
|
arr = ([v, v + 1] for v in [0..5])
|
|
|
|
iterations = 0
|
2013-05-25 18:29:26 -04:00
|
|
|
for [v0, v1], k in arr when v0
|
2011-12-21 14:06:34 -05:00
|
|
|
k += 3
|
|
|
|
++iterations
|
|
|
|
eq 6, k
|
|
|
|
eq 5, iterations
|
2012-02-13 19:47:21 -05:00
|
|
|
|
|
|
|
test "#2007: Return object literal from comprehension", ->
|
|
|
|
y = for x in [1, 2]
|
|
|
|
foo: "foo" + x
|
|
|
|
eq 2, y.length
|
|
|
|
eq "foo1", y[0].foo
|
|
|
|
eq "foo2", y[1].foo
|
|
|
|
|
|
|
|
x = 2
|
|
|
|
y = while x
|
|
|
|
x: --x
|
|
|
|
eq 2, y.length
|
|
|
|
eq 1, y[0].x
|
|
|
|
eq 0, y[1].x
|
2013-02-01 20:23:14 -05:00
|
|
|
|
2012-04-24 12:21:47 -04:00
|
|
|
test "#2274: Allow @values as loop variables", ->
|
|
|
|
obj = {
|
|
|
|
item: null
|
|
|
|
method: ->
|
|
|
|
for @item in [1, 2, 3]
|
|
|
|
null
|
|
|
|
}
|
|
|
|
eq obj.item, null
|
|
|
|
obj.method()
|
|
|
|
eq obj.item, 3
|
2013-02-01 20:23:14 -05:00
|
|
|
|
|
|
|
test "#2525, #1187, #1208, #1758, looping over an array forwards", ->
|
|
|
|
list = [0, 1, 2, 3, 4]
|
|
|
|
|
|
|
|
ident = (x) -> x
|
|
|
|
|
|
|
|
arrayEq (i for i in list), list
|
|
|
|
|
|
|
|
arrayEq (index for i, index in list), list
|
|
|
|
|
|
|
|
arrayEq (i for i in list by 1), list
|
|
|
|
|
|
|
|
arrayEq (i for i in list by ident 1), list
|
|
|
|
|
|
|
|
arrayEq (i for i in list by ident(1) * 2), [0, 2, 4]
|
|
|
|
|
|
|
|
arrayEq (index for i, index in list by ident(1) * 2), [0, 2, 4]
|
|
|
|
|
|
|
|
test "#2525, #1187, #1208, #1758, looping over an array backwards", ->
|
|
|
|
list = [0, 1, 2, 3, 4]
|
|
|
|
backwards = [4, 3, 2, 1, 0]
|
|
|
|
|
|
|
|
ident = (x) -> x
|
|
|
|
|
|
|
|
arrayEq (i for i in list by -1), backwards
|
|
|
|
|
|
|
|
arrayEq (index for i, index in list by -1), backwards
|
|
|
|
|
|
|
|
arrayEq (i for i in list by ident -1), backwards
|
|
|
|
|
|
|
|
arrayEq (i for i in list by ident(-1) * 2), [4, 2, 0]
|
|
|
|
|
|
|
|
arrayEq (index for i, index in list by ident(-1) * 2), [4, 2, 0]
|
|
|
|
|
2014-01-24 13:18:55 -05:00
|
|
|
test "splats in destructuring in comprehensions", ->
|
|
|
|
list = [[0, 1, 2], [2, 3, 4], [4, 5, 6]]
|
|
|
|
arrayEq (seq for [rep, seq...] in list), [[1, 2], [3, 4], [5, 6]]
|
2013-02-01 20:23:14 -05:00
|
|
|
|
2014-01-24 13:18:55 -05:00
|
|
|
test "#156: expansion in destructuring in comprehensions", ->
|
|
|
|
list = [[0, 1, 2], [2, 3, 4], [4, 5, 6]]
|
|
|
|
arrayEq (last for [..., last] in list), [2, 4, 6]
|