mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 09:00:22 +00:00
LibJS: Fix return statements not working properly in loops
Previously, when a loop detected an unwind of type ScopeType::Function (which means a return statement was executed inside of the loop), it would just return undefined. This set the VM's last_value to undefined, when it should have been the returned value. This patch makes all loop statements return the appropriate value in the above case.
This commit is contained in:
parent
d980073122
commit
6e05685ad4
Notes:
sideshowbarker
2024-07-19 01:57:27 +09:00
Author: https://github.com/mattco98 Commit: https://github.com/SerenityOS/serenity/commit/6e05685ad4c Pull-request: https://github.com/SerenityOS/serenity/pull/3726 Issue: https://github.com/SerenityOS/serenity/issues/3604
3 changed files with 59 additions and 8 deletions
|
@ -269,7 +269,7 @@ Value WhileStatement::execute(Interpreter& interpreter, GlobalObject& global_obj
|
|||
interpreter.vm().stop_unwind();
|
||||
break;
|
||||
} else {
|
||||
return js_undefined();
|
||||
return last_value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -293,7 +293,7 @@ Value DoWhileStatement::execute(Interpreter& interpreter, GlobalObject& global_o
|
|||
interpreter.vm().stop_unwind();
|
||||
break;
|
||||
} else {
|
||||
return js_undefined();
|
||||
return last_value;
|
||||
}
|
||||
}
|
||||
} while (m_test->execute(interpreter, global_object).to_boolean());
|
||||
|
@ -343,7 +343,7 @@ Value ForStatement::execute(Interpreter& interpreter, GlobalObject& global_objec
|
|||
interpreter.vm().stop_unwind();
|
||||
break;
|
||||
} else {
|
||||
return js_undefined();
|
||||
return last_value;
|
||||
}
|
||||
}
|
||||
if (m_update) {
|
||||
|
@ -364,7 +364,7 @@ Value ForStatement::execute(Interpreter& interpreter, GlobalObject& global_objec
|
|||
interpreter.vm().stop_unwind();
|
||||
break;
|
||||
} else {
|
||||
return js_undefined();
|
||||
return last_value;
|
||||
}
|
||||
}
|
||||
if (m_update) {
|
||||
|
@ -431,7 +431,7 @@ Value ForInStatement::execute(Interpreter& interpreter, GlobalObject& global_obj
|
|||
interpreter.vm().stop_unwind();
|
||||
break;
|
||||
} else {
|
||||
return js_undefined();
|
||||
return last_value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -480,8 +480,6 @@ Value ForOfStatement::execute(Interpreter& interpreter, GlobalObject& global_obj
|
|||
if (interpreter.exception())
|
||||
return {};
|
||||
|
||||
if (interpreter.vm().should_unwind())
|
||||
return js_undefined();
|
||||
return last_value;
|
||||
}
|
||||
|
||||
|
|
|
@ -167,7 +167,7 @@ public:
|
|||
m_unwind_until_label = label;
|
||||
}
|
||||
void stop_unwind() { m_unwind_until = ScopeType::None; }
|
||||
bool should_unwind_until(ScopeType type, FlyString label) const
|
||||
bool should_unwind_until(ScopeType type, FlyString label = {}) const
|
||||
{
|
||||
if (m_unwind_until_label.is_null())
|
||||
return m_unwind_until == type;
|
||||
|
|
|
@ -0,0 +1,53 @@
|
|||
describe("returning from loops", () => {
|
||||
test("returning from while loops", () => {
|
||||
function foo() {
|
||||
while (true) {
|
||||
return 10;
|
||||
}
|
||||
}
|
||||
|
||||
expect(foo()).toBe(10);
|
||||
});
|
||||
|
||||
test("returning from do-while loops", () => {
|
||||
function foo() {
|
||||
do {
|
||||
return 10;
|
||||
} while (true);
|
||||
}
|
||||
|
||||
expect(foo()).toBe(10);
|
||||
});
|
||||
|
||||
test("returning from for loops", () => {
|
||||
function foo() {
|
||||
for (let i = 0; i < 5; i++) {
|
||||
return 10;
|
||||
}
|
||||
}
|
||||
|
||||
expect(foo()).toBe(10);
|
||||
});
|
||||
|
||||
test("returning from for-in loops", () => {
|
||||
function foo() {
|
||||
const o = { a: 1, b: 2 };
|
||||
for (let a in o) {
|
||||
return 10;
|
||||
}
|
||||
}
|
||||
|
||||
expect(foo()).toBe(10);
|
||||
});
|
||||
|
||||
test("returning from for-of loops", () => {
|
||||
function foo() {
|
||||
const o = [1, 2, 3];
|
||||
for (let a of o) {
|
||||
return 10;
|
||||
}
|
||||
}
|
||||
|
||||
expect(foo()).toBe(10);
|
||||
});
|
||||
});
|
Loading…
Reference in a new issue