From 41df74e3c36f10fc6ff6e27a5505709a5d21c1cc Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Wed, 7 Dec 2011 22:40:28 -0800 Subject: Deparse.pm: More functions that do not follow llafr MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See the previous commit. Again, whether we apply the llafr to loop exits shouldn’t be about whether parentheses look nice, but whether the final code parses correctly. --- dist/B-Deparse/t/deparse.t | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'dist/B-Deparse/t/deparse.t') diff --git a/dist/B-Deparse/t/deparse.t b/dist/B-Deparse/t/deparse.t index badf0dae6c..2361088be5 100644 --- a/dist/B-Deparse/t/deparse.t +++ b/dist/B-Deparse/t/deparse.t @@ -843,3 +843,10 @@ do({}); () = (do 'file') + time; () = (do ($1 + $2) * $3) + time; () = (do ($1 xor $2)) + time; +() = (goto 1) + 3; +() = (require 'foo') + 3; +() = (require foo) + 3; +() = (dump 1) + 3; +() = (last 1) + 3; +() = (next 1) + 3; +() = (redo 1) + 3; -- cgit v1.2.1