From c44cab60b7b6cf0a36e1dd011c2fe483e8d87b38 Mon Sep 17 00:00:00 2001 From: Li Jin Date: Sat, 20 Feb 2021 17:34:52 +0800 Subject: fix issue in destructure syntax. --- spec/inputs/destructure.yue | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'spec') diff --git a/spec/inputs/destructure.yue b/spec/inputs/destructure.yue index 49e6393..6b52441 100644 --- a/spec/inputs/destructure.yue +++ b/spec/inputs/destructure.yue @@ -22,6 +22,12 @@ do {a, :b, c, :d, e, :f, g} = tbl + do :a, :b, c = tbl + + do :a, b, :c = tbl + + do a, :b, :c = tbl + --- do -- cgit v1.2.3-55-g6feb