in reply to Re^7: Try::Tiny and -E
in thread Try::Tiny and -E
That solution will give both false positives (warn when it shouldn't) and false negatives (not warn when it should). The order loaded will determine if you can get false positives or false negatives, but it you can get false results regardless of the order in which they are loaded. Again, the order in which you load the modules is irrelevant. And that's because you're checking at the wrong time to get consistent results. For that, you need to check when try use is compiled, not when the module is loaded.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: Try::Tiny and -E
by LanX (Saint) on Dec 30, 2025 at 03:17 UTC | |
by ikegami (Patriarch) on Dec 30, 2025 at 05:01 UTC | |
by LanX (Saint) on Dec 30, 2025 at 11:24 UTC | |
by ikegami (Patriarch) on Jan 02, 2026 at 09:36 UTC | |
by LanX (Saint) on Jan 02, 2026 at 13:18 UTC | |
|