perldoc > Eval::Closure

πŸ“› NAME

Eval::Closure - safely and cleanly create closures via string eval

πŸš€ Quick Reference

Use Case Command Description
🧠 Basic Closure eval_closure(source => 'sub { $foo++ }', environment => { '$foo' => \1 }) Create a closure with access to specified variables
πŸ” Debugging eval_closure(..., description => "accessor foo") Override backtrace frame name for easier debugging
πŸ”— Alias Mode eval_closure(..., alias => 1) Close directly over the original variables (requires Devel::LexAlias)
πŸ“œ Lexical Sub (5.18+) eval_closure(..., environment => { '&sub' => \&existing }) Pass a & sigil variable to create a lexical sub in the eval
🀫 Terse Errors eval_closure(..., terse_error => 1) Suppress the additional source‑code appendix in compilation errors
πŸ“‹ Array Source eval_closure(source => [ 'line1', 'line2' ], ...) Supply the code as an arrayref of lines instead of a single string

πŸ”– VERSION

version 0.14

πŸ“‹ SYNOPSIS

use Eval::Closure;

my $code = eval_closure(
    source      => 'sub { $foo++ }',
    environment => {
        '$foo' => \1,
    },
);

warn $code->(); # 1
warn $code->(); # 2

my $code2 = eval_closure(
    source => 'sub { $code->() }',
); # dies, $code isn't in scope

πŸ“˜ DESCRIPTION

⚠️ String eval is often used for dynamic code generation. For instance, Moose uses it heavily, to generate inlined versions of accessors and constructors, which speeds code up at runtime by a significant amount. String eval is not without its issues however - it's difficult to control the scope it's used in (which determines which variables are in scope inside the eval), and it's easy to miss compilation errors, since eval catches them and sticks them in $@ instead.

πŸ’‘ This module attempts to solve these problems. It provides an eval_closure function, which evals a string in a clean environment, other than a fixed list of specified variables. Compilation errors are rethrown automatically.

βš™οΈ FUNCTIONS

πŸ”§ eval_closure(%args)

This function provides the main functionality of this module. It is exported by default. It takes a hash of parameters, with these keys being valid:

🐞 BUGS

No known bugs.

Please report any bugs to GitHub Issues at <https://github.com/doy/eval-closure/issues>.

πŸ”— SEE ALSO

πŸ†˜ SUPPORT

You can find this documentation for this module with the perldoc command.

perldoc Eval::Closure

You can also look for information at:

πŸ“ NOTES

Based on code from Class::MOP::Method::Accessor, by Stevan Little and the Moose Cabal.

✍️ AUTHOR

Jesse Luehrs <doy AT tozt.net>

©️ COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Jesse Luehrs.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

Eval::Closure
πŸ“› NAME πŸš€ Quick Reference πŸ”– VERSION πŸ“‹ SYNOPSIS πŸ“˜ DESCRIPTION βš™οΈ FUNCTIONS
πŸ”§ eval_closure(%args)
🐞 BUGS πŸ”— SEE ALSO πŸ†˜ SUPPORT πŸ“ NOTES ✍️ AUTHOR ©️ COPYRIGHT AND LICENSE

Generated by phpman v4.9.26-5-g7740029 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-12 22:31 @216.73.217.60
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Valid XHTML 1.0 Transitional!Valid CSS!

^_top_^