diff --git a/change-notes/1.24/analysis-javascript.md b/change-notes/1.24/analysis-javascript.md index 65c7d79f9fc..f67bcbef676 100644 --- a/change-notes/1.24/analysis-javascript.md +++ b/change-notes/1.24/analysis-javascript.md @@ -27,4 +27,3 @@ ## Changes to libraries * The predicates `RegExpTerm.getSuccessor` and `RegExpTerm.getPredecessor` have been changed to reflect textual, not operational, matching order. This only makes a difference in lookbehind assertions, which are operationally matched backwards. Previously, `getSuccessor` would mimick this, so in an assertion `(?<=ab)` the term `b` would be considered the predecessor, not the successor, of `a`. Textually, however, `a` is still matched before `b`, and this is the order we now follow. -* `import.meta` expressions no longer result in a syntax error in JavaScript files. diff --git a/change-notes/1.24/extractor-javascript.md b/change-notes/1.24/extractor-javascript.md new file mode 100644 index 00000000000..0e8a3c978cf --- /dev/null +++ b/change-notes/1.24/extractor-javascript.md @@ -0,0 +1,7 @@ +[[ condition: enterprise-only ]] + +# Improvements to JavaScript analysis + +## Changes to code extraction + +* `import.meta` expressions no longer result in a syntax error in JavaScript files.