aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/return.moon
blob: 61d3dcade33b95dafe8ea27786d74d0da476f31a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
-- testing `return` propagation

-> x for x in *things
-> [x for x in *things]


-- doesn't make sense on purpose
do
  return x for x in *things

do
  return [x for x in *things]

do
  return {x,y for x,y in *things}

->
  if a
    if a
      a
    else
      b
  elseif b
    if a
      a
    else
      b
  else
    if a
      a
    else
      b


do
  return if a
    if a
      a
    else
      b
  elseif b
    if a
      a
    else
      b
  else
    if a
      a
    else
      b

-> a\b
do a\b