Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add missing shadowers for IO::Dup
  • Loading branch information
lizmat committed Jan 5, 2015
1 parent 710a46b commit 81830f5
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions src/core/IO/Dup.pm
Expand Up @@ -28,14 +28,20 @@ class IO::Dup does IO does PIO {

method IO(IO::Dup:D:) { self }

method e(IO::Dup:D:) { True }
method d(IO::Dup:D:) { False }
method f(IO::Dup:D:) { False }
method s(IO::Dup:D:) { 0 }
method l(IO::Dup:D:) { False }
method r(IO::Dup:D:) { $!fileno == 0 }
method w(IO::Dup:D:) { $!fileno > 0 }
method x(IO::Dup:D:) { False }
method e(IO::Dup:D:) { True }
method d(IO::Dup:D:) { False }
method f(IO::Dup:D:) { False }
method s(IO::Dup:D:) { 0 }
method l(IO::Dup:D:) { False }
method r(IO::Dup:D:) { $!fileno == 0 }
method w(IO::Dup:D:) { $!fileno > 0 }
method rw(IO::Dup:D:) { False }
method x(IO::Dup:D:) { False }
method rx(IO::Dup:D:) { False }
method wx(IO::Dup:D:) { False }
method rwx(IO::Dup:D:) { False }
method o(IO::Dup:D:) { False }
method z(IO::Dup:D:) { False }
method modified(IO::Dup:D:) { Instant }
method accessed(IO::Dup:D:) { Instant }
method changed(IO::Dup:D:) { Instant }
Expand Down

0 comments on commit 81830f5

Please sign in to comment.