mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 20:59:16 +00:00
LibJS: Initial class implementation; allow super expressions in object
literal methods; add EnvrionmentRecord fields and methods to LexicalEnvironment Adding EnvrionmentRecord's fields and methods lets us throw an exception when |this| is not initialized, which occurs when the super constructor in a derived class has not yet been called, or when |this| has already been initialized (the super constructor was already called).
This commit is contained in:
parent
a535d58cac
commit
7533fd8b02
Notes:
sideshowbarker
2024-07-19 05:19:30 +09:00
Author: https://github.com/jack-karamanian
Commit: 7533fd8b02
Pull-request: https://github.com/SerenityOS/serenity/pull/2533
Reviewed-by: https://github.com/linusg
18 changed files with 967 additions and 92 deletions
|
@ -74,7 +74,7 @@ Value BigIntConstructor::call(Interpreter& interpreter)
|
|||
|
||||
Value BigIntConstructor::construct(Interpreter& interpreter)
|
||||
{
|
||||
interpreter.throw_exception<TypeError>(ErrorType::NotACtor, "BigInt");
|
||||
interpreter.throw_exception<TypeError>(ErrorType::NotAConstructor, "BigInt");
|
||||
return {};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue