String eval does not inherit strict vars on either backend
Nobody has claimed this yet.
Assessment
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Newbie friendliness
- 68/100
Research direction
Start with EvalStringHandler.java around lines 317-322 and 500-510, then inspect RuntimeCode.evalStringWithInterpreter and the shared eval-context capture. Run the minimal strict-vars reproducer and the Exporter::Easy 0.18 suite on both backends. Done means strict vars is inherited, no strict vars still disables it, declared variables remain usable, and permanent regression coverage passes.
Written by the indexing model from the issue text.
Description
Summary
PerlOnJava does not inherit use strict's vars setting into string eval compilation. As a result, undeclared package variables inside an eval string execute successfully instead of producing Perl's compile-time strict-vars error.
This causes Exporter::Easy 0.18's negative tests to fail on both PerlOnJava backends.
CPAN failure
Archived CPAN run: 20260918-141920-96054
Distribution: Exporter-Easy-0.18
Target: Exporter::Easy
Results:
t/Easiest.t .. ok
t/Easy.t ..... 4 failed of 51
Files=2, Tests=72
The four failures are:
list vars can't use var @goodbye
list vars can't use var %goodbye
no vars can't use var @goodbye
no vars can't use var %goodbye
The test helper evaluates each expression with:
eval "package $pkg;$code"
Under system Perl, the undeclared @goodbye and %goodbye references correctly die under the surrounding use strict. Under PerlOnJava they execute successfully, so the negative assertions fail.
Minimal reproducer
use strict;
my $result = eval q{@goodbye};
die "strict vars was not enforced" unless $@;
Expected result: the eval fails with a diagnostic equivalent to:
Global symbol "@goodbye" requires explicit package name
Observed on both JVM and interpreter backends: the eval succeeds and returns an empty array value.
The CPAN test's package-qualified form also reproduces the issue:
use strict;
my $package = __PACKAGE__;
my $ok = eval "package $package;\\@goodbye";
Oracle comparison
The unchanged upstream suite passes completely under system Perl 5.42.2:
t/Easiest.t .. ok
t/Easy.t ..... ok
All tests successful.
Files=2, Tests=72
There are no XS/native components or external services involved.
Investigation and suspected ownership
The failure is in string-eval lexical-state propagation, not in Exporter::Easy's export logic.
The JVM eval path is implemented by EvalStringHandler. It creates a fresh ScopedSymbolTable and is intended to inherit strict options from the caller around EvalStringHandler.java lines 317-322 and 500-510. The eval parser then performs strict-vars validation against that new table.
The interpreter eval path is implemented by RuntimeCode.evalStringWithInterpreter; it obtains the saved eval context and parses the string separately. It exhibits the same missing strict-vars behavior, so the shared eval-context capture/propagation or eval compilation setup should be examined rather than only one backend's emitter.
The key semantic requirement is that eval STRING inherits the caller's lexical hints, including strict 'vars', while still allowing explicit no strict 'vars' to disable the check.
Related issue search
Issue #1302, “JVM backend rejects valid @$ glob dereference under strict vars,” is related to strict-vars handling but is not a duplicate. It covers a false positive for glob-dereference syntax; this issue covers missing strict-vars inheritance inside string eval and affects both backends.
Acceptance criteria
- The minimal reproducer fails inside
eval STRINGunderuse stricton both JVM and interpreter backends. no strict 'vars'continues to allow the same eval expression.- Lexically declared variables and explicitly declared package variables remain usable inside eval strings.
Exporter::Easy0.18's full 72-test suite passes on both backends.- Add permanent project-owned regression coverage for strict-vars inheritance in string eval.
- Dominant language
- Perl
- Stars
- 64
- Forks
- 6
- Avg merge
- 5h 38m
- Merged PRs (30d)
- 170
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
More from fglock/PerlOnJava
-
area:cpan-port area:unicode bug
Difficulty 2/5 1-3 hours Newbie friendliness 88/100
fglock/PerlOnJava#1341 ·
-
area:backend area:runtime bug
Difficulty 4/5 3-5 days Newbie friendliness 45/100
fglock/PerlOnJava#1511 ·
-
area:backend area:cpan-port bug
Difficulty 4/5 3-5 days Newbie friendliness 45/100
fglock/PerlOnJava#1508 · 1 comment ·
-
area:cpan-port area:platform enhancement
Difficulty 5/5 Over a week Newbie friendliness 30/100
fglock/PerlOnJava#1507 ·
-
bug
Difficulty 4/5 3-5 days Newbie friendliness 45/100
fglock/PerlOnJava#1506 ·
All issues in fglock/PerlOnJava
Similar issues
-
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
-
documentation Needs Triage
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
-
Difficulty 2/5 1-3 hours Newbie friendliness 75/100
trizen/youtube-viewer#456 ·
-
Difficulty 2/5 1-3 hours Newbie friendliness 70/100
-
connectivity Open
Difficulty 1/5 Under an hour Newbie friendliness 80/100