summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Tests/parser-declaration-in-single-statement-context.js
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-12 12:17:30 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-12 12:17:46 +0100
commit13d7c09125f8eec703d0a43a9a87fc8aa08f7319 (patch)
tree70fd643c429cea5c1f9362c2674511d17a53f3b5 /Userland/Libraries/LibJS/Tests/parser-declaration-in-single-statement-context.js
parentdc28c07fa526841e05e16161c74a6c23984f1dd5 (diff)
downloadserenity-13d7c09125f8eec703d0a43a9a87fc8aa08f7319.zip
Libraries: Move to Userland/Libraries/
Diffstat (limited to 'Userland/Libraries/LibJS/Tests/parser-declaration-in-single-statement-context.js')
-rw-r--r--Userland/Libraries/LibJS/Tests/parser-declaration-in-single-statement-context.js6
1 files changed, 6 insertions, 0 deletions
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();
+});