aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/bubbling.moon
diff options
context:
space:
mode:
Diffstat (limited to 'spec/inputs/bubbling.moon')
-rw-r--r--spec/inputs/bubbling.moon8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/inputs/bubbling.moon b/spec/inputs/bubbling.moon
index d1004f9..62d1550 100644
--- a/spec/inputs/bubbling.moon
+++ b/spec/inputs/bubbling.moon
@@ -3,17 +3,17 @@
3f = (...) -> #{...} 3f = (...) -> #{...}
4 4
5dont_bubble = -> 5dont_bubble = ->
6 [x for x in ((...)-> print ...)("hello")] 6 [x for x in ((...)-> print ...)("hello")]
7 7
8k = [x for x in ((...)-> print ...)("hello")] 8k = [x for x in ((...)-> print ...)("hello")]
9 9
10j = for i=1,10 10j = for i=1,10
11 (...) -> print ... 11 (...) -> print ...
12 12
13-- bubble me 13-- bubble me
14 14
15m = (...) -> 15m = (...) ->
16 [x for x in *{...} when f(...) > 4] 16 [x for x in *{...} when f(...) > 4]
17 17
18x = for i in *{...} do i 18x = for i in *{...} do i
19y = [x for x in *{...}] 19y = [x for x in *{...}]
@@ -23,6 +23,6 @@ z = [x for x in hallo when f(...) > 4]
23a = for i=1,10 do ... 23a = for i=1,10 do ...
24 24
25b = for i=1,10 25b = for i=1,10
26 -> print ... 26 -> print ...
27 27
28 28