This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add &CORE::defined
authorFather Chrysostomos <sprout@cpan.org>
Fri, 27 Apr 2012 03:38:37 +0000 (20:38 -0700)
committerFather Chrysostomos <sprout@cpan.org>
Tue, 29 May 2012 16:36:24 +0000 (09:36 -0700)
gv.c
t/op/coreamp.t
t/op/coresubs.t

diff --git a/gv.c b/gv.c
index 4dc9409..b8f92e7 100644 (file)
--- a/gv.c
+++ b/gv.c
@@ -455,12 +455,10 @@ S_maybe_add_coresub(pTHX_ HV * const stash, GV *gv,
     if (!code) return NULL; /* Not a keyword */
     switch (code < 0 ? -code : code) {
      /* no support for \&CORE::infix;
-        no support for funcs that take labels, as their parsing is
-        weird;
-        no support (yet) for keywords that are not overridable */
+        no support for funcs that do not parse like funcs */
     case KEY___DATA__: case KEY___END__: case KEY_and: case KEY_AUTOLOAD:
     case KEY_BEGIN   : case KEY_CHECK  : case KEY_cmp: case KEY_CORE    :
-    case KEY_default : case KEY_defined: case KEY_delete: case KEY_DESTROY:
+    case KEY_default : case KEY_delete : case KEY_DESTROY:
     case KEY_do      : case KEY_dump   : case KEY_else  : case KEY_elsif  :
     case KEY_END     : case KEY_eq     : case KEY_eval  : case KEY_exists :
     case KEY_for     : case KEY_foreach: case KEY_format: case KEY_ge     :
@@ -478,7 +476,7 @@ S_maybe_add_coresub(pTHX_ HV * const stash, GV *gv,
     case KEY_x    : case KEY_xor  : case KEY_y        :
        return NULL;
     case KEY_chdir:
-    case KEY_chomp: case KEY_chop:
+    case KEY_chomp: case KEY_chop: case KEY_defined:
     case KEY_each: case KEY_eof: case KEY_exec:
     case KEY_keys:
     case KEY_lstat:
index c1075b0..65b299f 100644 (file)
@@ -886,7 +886,7 @@ like $@, qr'^Undefined format "STDOUT" called',
       my $word = $1;
       next if
        $word =~ /^(?:s(?:t(?:ate|udy)|(?:pli|or)t|calar|ay|ub)?|d(?:e(?:f
-                  (?:ault|ined)|lete)|ump|o)|p(?:r(?:ototype|intf?)|ackag
+                  ault|lete)|ump|o)|p(?:r(?:ototype|intf?)|ackag
                   e|os)|e(?:ls(?:if|e)|xists|val|q)|g(?:[et]|iven|lob|oto
                   |rep)|u(?:n(?:less|def|til)|se)|l(?:(?:as)?t|ocal|e)|re
                   (?:quire|turn|do)|__(?:DATA|END)__|for(?:each|mat)?|(?:
index c7efa2d..84528b5 100644 (file)
@@ -17,7 +17,7 @@ my $bd = new B::Deparse '-p';
 
 my %unsupported = map +($_=>1), qw (
  __DATA__ __END__ AUTOLOAD BEGIN UNITCHECK CORE DESTROY END INIT CHECK and
-  cmp default defined delete do dump else elsif eq eval exists for foreach
+  cmp default delete do  dump  else  elsif  eq  eval  exists  for  foreach
   format ge given glob goto grep gt if last le local lt m map my  ne  next
   no or our package pos print printf prototype q qq qr qw qx redo  require
   return s say scalar sort split state study sub tr undef unless until use