aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2023-10-06 15:25:58 +0800
committerLi Jin <dragon-fly@qq.com>2023-10-06 15:25:58 +0800
commit6d88ca63050623db73e3cfe614e9a90657f5e875 (patch)
treeaecb57b07fbd653fa4eb54f31946faf1c578380e /spec/inputs
parentbf84f1c22fba949017f0b8be82d3ac562ab5316e (diff)
downloadyuescript-0.19.5.tar.gz
yuescript-0.19.5.tar.bz2
yuescript-0.19.5.zip
fixing issue #150.v0.19.5
Diffstat (limited to '')
-rw-r--r--spec/inputs/pipe.yue6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/inputs/pipe.yue b/spec/inputs/pipe.yue
index 7e33422..02f87a3 100644
--- a/spec/inputs/pipe.yue
+++ b/spec/inputs/pipe.yue
@@ -71,6 +71,12 @@ do
71 |> f2 2 71 |> f2 2
72 |> f3 3 72 |> f3 3
73 |> f4 4 73 |> f4 4
74
75 const x = y
76 |> z
77
78 close a = b
79 |> c
74 80
75x = 123 |> a |> b or 456 |> c |> d or a.if\then("abc") or a?.b\c?(123) or x\y 81x = 123 |> a |> b or 456 |> c |> d or a.if\then("abc") or a?.b\c?(123) or x\y
76 82