Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
IO::Dir/File need to be Cool (at least for now)
  • Loading branch information
lizmat committed Nov 3, 2014
1 parent f570202 commit 5f9a6be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/IO/Dir.pm
@@ -1,5 +1,5 @@
# A class for directories that we know exist
my class IO::Dir does IO::Local {
my class IO::Dir is Cool does IO::Local {

submethod BUILD(:$!abspath,:$check) {
if $check { # should really be .resolve, but we don't have that yet
Expand Down
2 changes: 1 addition & 1 deletion src/core/IO/File.pm
@@ -1,5 +1,5 @@
# A class for file(path)s that we know exist
my class IO::File does IO::Local {
my class IO::File is Cool does IO::Local {

submethod BUILD(:$!abspath) { }

Expand Down

0 comments on commit 5f9a6be

Please sign in to comment.