LibJS: Allow all line terminators to be used for line continuations

This commit is contained in:
Linus Groh 2020-10-25 18:36:10 +00:00 committed by Andreas Kling
parent 1319ad476d
commit 66e315959d
Notes: sideshowbarker 2024-07-19 01:43:39 +09:00
3 changed files with 21 additions and 4 deletions

View file

@ -32,7 +32,7 @@ test("use strict with double quotes after statement does not yield strict mode c
test("use strict interrupted by a line continuation does not yield strict mode code", () => {
"use \
strict";
strict";
expect(isStrictMode()).toBeFalse();
});