From 13d7c09125f8eec703d0a43a9a87fc8aa08f7319 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 12 Jan 2021 12:17:30 +0100 Subject: Libraries: Move to Userland/Libraries/ --- .../LibJS/Tests/parser-declaration-in-single-statement-context.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Userland/Libraries/LibJS/Tests/parser-declaration-in-single-statement-context.js (limited to 'Userland/Libraries/LibJS/Tests/parser-declaration-in-single-statement-context.js') diff --git a/Userland/Libraries/LibJS/Tests/parser-declaration-in-single-statement-context.js b/Userland/Libraries/LibJS/Tests/parser-declaration-in-single-statement-context.js new file mode 100644 index 0000000000..5e263427bc --- /dev/null +++ b/Userland/Libraries/LibJS/Tests/parser-declaration-in-single-statement-context.js @@ -0,0 +1,6 @@ +test("Declaration in single-statement context is a syntax error", () => { + expect("if (0) const foo = 1").not.toEval(); + expect("while (0) function foo() {}").not.toEval(); + expect("for (var 0;;) class foo() {}").not.toEval(); + expect("do let foo = 1 while (0)").not.toEval(); +}); -- cgit v1.2.3