| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
REPL speculative completeions were allowing ImportExpression to be egarly evaluated, which caused the REPL to try importing invalid modules which would cause the REPL to get stuck in a loop of trying to import the module and failing causing it to lock up. This commit makes it so that ImportExpression are disallowed from being evaluated in that case. Fixes: nodejs#64523 Signed-off-by: BlankParticle <blankparticle@gmail.com>
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## main #64534 +/- ##
==========================================
- Coverage 90.24% 90.24% -0.01%
==========================================
Files 739 739
Lines 241667 241668 +1
Branches 45550 45543 -7
==========================================
- Hits 218093 218090 -3
- Misses 15109 15112 +3
- Partials 8465 8466 +1
... and 30 files with indirect coverage changes 🚀 New features to boost your workflow:
|
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Fixes: #64523
REPL speculative completeions were allowing ImportExpression to be
egarly evaluated, which caused the REPL to try importing invalid modules
which would cause the REPL to get stuck in a loop of trying to import
the module and failing causing it to lock up. This commit makes it so
that ImportExpression are disallowed from being evaluated in that case.