pub fn parse_and_run_string(
code: &str,
interp: &mut VMHelper,
) -> PerlResult<PerlValue>Expand description
Parse and execute a string of Perl code within an existing interpreter.
Compile and execute via the bytecode VM.
Uses VMHelper::file for both parse diagnostics and __FILE__ during this execution.