Merge pull request #16161 from RasmusWL/js/strict-mode

JS: Parser: Never run in strict mode
This commit is contained in:
Asger F
2024-04-17 09:21:29 +02:00
committed by GitHub
4 changed files with 21 additions and 37 deletions

View File

@@ -0,0 +1,7 @@
---
category: minorAnalysis
---
* The JavaScript extractor will on longer report syntax errors related to "strict mode".
Files containing such errors are now being fully analyzed along with other sources files.
This improves our support for source files that technically break the "strict mode" rules,
but where a build steps transforms the code such that it ends up working at runtime.