1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-16 13:55:00 +00:00

LibJS: Implement bytecode generation for For-In/Of statements

This also implements the rather interesting behaviour that #12772 relies
on, so this fixes that bug in BC mode (the AST interp remains affected).
This commit is contained in:
Ali Mohammad Pur 2022-03-18 20:18:19 +03:30 committed by Andreas Kling
parent 83afc1154c
commit 8f7021faf7
6 changed files with 454 additions and 15 deletions

View file

@ -194,7 +194,10 @@ CodeGenerationErrorOr<void> Generator::emit_store_to_reference(JS::ASTNode const
return {};
}
VERIFY_NOT_REACHED();
return CodeGenerationError {
&node,
"Unimplemented/invalid node used a reference"sv
};
}
String CodeGenerationError::to_string()