From 57ff57ba9eaec633c8eabb4c188bffd580582b2a Mon Sep 17 00:00:00 2001 From: Hauke D Date: Sun, 2 Sep 2018 18:02:34 +0200 Subject: [PATCH] Added a To-Do --- web/regex_tester.html | 1 + 1 file changed, 1 insertion(+) diff --git a/web/regex_tester.html b/web/regex_tester.html index 084686d..efe86bf 100644 --- a/web/regex_tester.html +++ b/web/regex_tester.html @@ -252,6 +252,7 @@ update(); sub run_code { my ($context,$code,$input,$callback) = @_; my (@warns,@output); + #TODO Later: Capture STDOUT too? (and STDERR, instead of $SIG{__WARN__})? my $ok = do { local $SIG{__WARN__} = sub { push @warns, shift }; eval "package RunCode {$code\n};1" };