chdir still isn't throwing a CATCHable error. It now lives in
src/core/IO.pm
proto sub chdir(|$) { * }
multi sub chdir($path as Str) {
try {
pir::new__PS('OS').chdir($path)
}
$! ?? fail($!) !! True
}
--
Will "Coke" Coleda
# New Ticket Created by Mark Montague
# Please include the string: [perl #69991]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=69991 >
Exceptions from src/builtins/io.pir (and possibly elsewhere) are not
being properly