mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 04:37:55 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
test("empty semicolon statements", () => {
|
||||
expect(";;;").toEval();
|
||||
});
|
||||
|
||||
test("if with no body", () => {
|
||||
expect("if (true);").toEval();
|
||||
});
|
||||
|
||||
test("chained ifs with no bodies", () => {
|
||||
expect("if (false); else if (false); else;").toEval();
|
||||
});
|
||||
|
||||
test("while with no body", () => {
|
||||
expect("while (false);").toEval();
|
||||
});
|
||||
|
||||
test("do while with no body", () => {
|
||||
expect("do; while (false);").toEval();
|
||||
});
|
||||
Reference in New Issue
Block a user