From 0611dc3f608ca47d2b80971d2231b6c351e8fd97 Mon Sep 17 00:00:00 2001 From: Erik Krogh Kristensen Date: Wed, 18 Dec 2019 14:21:43 +0100 Subject: [PATCH] move change notes to extractor-javascript.md --- change-notes/1.24/analysis-javascript.md | 1 - change-notes/1.24/extractor-javascript.md | 7 +++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 change-notes/1.24/extractor-javascript.md 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.