1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 14:05:08 +00:00

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
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();
});