From b21621692e877e5a44508b90049c2bc75091ebac Mon Sep 17 00:00:00 2001 From: Li Jin Date: Wed, 21 May 2025 18:10:32 +0800 Subject: Allowed backcall without parentheses. --- spec/inputs/backcall.yue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spec') diff --git a/spec/inputs/backcall.yue b/spec/inputs/backcall.yue index 8aadc71..e6b8c21 100644 --- a/spec/inputs/backcall.yue +++ b/spec/inputs/backcall.yue @@ -13,9 +13,9 @@ do x > 2 do - (data) <- http?.get "ajaxtest" + data <- http?.get "ajaxtest" body[".result"]\html data - (processed) <- http.post "ajaxprocess", data + processed <- http.post "ajaxprocess", data body[".result"]\append processed <- setTimeout 1000 print "done" -- cgit v1.2.3-55-g6feb