From 66ec8581ff74babf75da2f106b1caad3a7c5e44a Mon Sep 17 00:00:00 2001 From: "Flavio S. Glock" Date: Mon, 12 Nov 2012 14:20:16 +0100 Subject: [PATCH] Perlito5 - TODO update --- TODO-perlito5 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/TODO-perlito5 b/TODO-perlito5 index 76d7ca7b5..316c96da4 100644 --- a/TODO-perlito5 +++ b/TODO-perlito5 @@ -64,8 +64,6 @@ TODO list for Perlito5 --- check signature in sort() --- fix the prototype for 'stat(*)' (see t/test.pl in the perl test suite) --- check that \(@a) and \@a have different meanings - -- $v{x::y} autoquotes the index when x::y() exists -- $v->{x} doesn't interpolate inside double quotes -- deref inside double quotes: @@ -148,6 +146,8 @@ TODO list for Perlito5 * Perl5 backend +-- check that \(@a) and \@a have different meanings + -- ${^NAME} needs curly-escaping - fix regex delimiters, or escape the regexes @@ -164,6 +164,8 @@ TODO list for Perlito5 * Javascript backend +-- check that \(@a) and \@a have different meanings + -- delete() in the middle of an array turns exists() off: $ perl -e ' @a = (3..7); delete $a[2]; print "exists ", (exists $a[$_] ? 1 : 0), "\n" for 0 .. $#a '