jashkenas--coffeescript/test/test_pattern_matching.coffee

163 lines
2.7 KiB
CoffeeScript
Raw Normal View History

# Simple variable swapping.
2010-07-25 05:23:37 +00:00
a = -1
b = -2
2010-07-25 05:23:37 +00:00
[a, b] = [b, a]
eq a, -2
eq b, -1
2010-07-25 05:23:37 +00:00
func = ->
[a, b] = [b, a]
eq func().join(' '), '-1 -2'
eq a, -1
eq b, -2
#713
eq (onetwo = [1, 2]), [a, b] = [c, d] = onetwo
ok a is c is 1 and b is d is 2
# Array destructuring, including splats.
2010-07-25 05:23:37 +00:00
[x,y...,z] = [1,2,3,4,5]
ok x is 1
ok y.length is 3
ok z is 5
2010-07-25 05:23:37 +00:00
[x, [y, mids..., last], z..., end] = [1, [10, 20, 30, 40], 2,3,4, 5]
ok x is 1
ok y is 10
ok mids.length is 2 and mids[1] is 30
ok last is 40
ok z.length is 3 and z[2] is 4
ok end is 5
# Object destructuring.
2010-07-25 05:23:37 +00:00
obj = {x: 10, y: 20, z: 30}
2010-07-25 05:23:37 +00:00
{x: a, y: b, z: c} = obj
ok a is 10
ok b is 20
ok c is 30
2010-07-25 05:23:37 +00:00
person = {
name: "Moe"
family: {
'elder-brother': {
addresses: [
"first"
{
street: "101 Deercreek Ln."
city: "Moquasset NY, 10021"
}
]
}
}
}
2010-07-25 05:23:37 +00:00
{name: a, family: {'elder-brother': {addresses: [one, {city: b}]}}} = person
ok a is "Moe"
ok b is "Moquasset NY, 10021"
2010-07-25 05:23:37 +00:00
test = {
person: {
address: [
"------"
"Street 101"
"Apt 101"
"City 101"
]
}
}
2010-07-25 05:23:37 +00:00
{person: {address: [ignore, addr...]}} = test
ok addr.join(', ') is "Street 101, Apt 101, City 101"
# Pattern matching against an expression.
2010-07-25 05:23:37 +00:00
[a, b] = if true then [2, 1] else [1, 2]
ok a is 2
ok b is 1
# Pattern matching with object shorthand.
2010-07-25 05:23:37 +00:00
person = {
name: "Bob"
age: 26
dogs: ["Prince", "Bowie"]
}
2010-07-25 05:23:37 +00:00
{name, age, dogs: [first, second]} = person
ok name is "Bob"
ok age is 26
ok first is "Prince"
ok second is "Bowie"
# Pattern matching within for..loops.
2010-07-25 05:23:37 +00:00
persons = {
George: { name: "Bob" },
Bob: { name: "Alice" }
Christopher: { name: "Stan" }
}
join1 = ("#{key}: #{name}" for key, { name } of persons)
2010-10-11 22:22:01 +00:00
eq join1.join(' / '), "George: Bob / Bob: Alice / Christopher: Stan"
2010-07-25 05:23:37 +00:00
persons = [
{ name: "Bob", parent: { name: "George" } },
{ name: "Alice", parent: { name: "Bob" } },
{ name: "Stan", parent: { name: "Christopher" } }
]
join2 = ("#{parent}: #{name}" for { name, parent: { name: parent } } in persons)
2010-10-11 22:22:01 +00:00
eq join1.join(' '), join2.join(' ')
2010-07-25 05:23:37 +00:00
persons = [['Bob', ['George']], ['Alice', ['Bob']], ['Stan', ['Christopher']]]
join3 = ("#{parent}: #{name}" for [name, [parent]] in persons)
2010-10-11 22:22:01 +00:00
eq join2.join(' '), join3.join(' ')
# Pattern matching doesn't clash with implicit block objects.
obj = a: 101
func = -> true
if func func
{a} = obj
ok a is 101
2010-10-02 12:49:21 +00:00
[x] = {0: y} = {'0': z} = [Math.random()]
ok x is y is z, 'destructuring in multiple'
# Destructuring into an object.
obj =
func: (list, object) ->
[@one, @two] = list
{@a, @b} = object
{@a} = object
null
{} = [] = ok yes, 'empty assignment is allowed'
obj.func [1, 2], a: 'a', b: 'b'
eq obj.one, 1
eq obj.two, 2
eq obj.a, 'a'
eq obj.b, 'b'