mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 11:57:36 +00:00
LibWeb: Add a very basic and ad-hoc version of IDL overload resolution
This initial version lays down the basic foundation of IDL overload resolution, but much of it will have to be replaced with the actual IDL overload resolution algorithms once we start implementing more complex IDL overloading scenarios.
This commit is contained in:
parent
24cf56896b
commit
59e9e7cc61
4 changed files with 198 additions and 28 deletions
|
@ -102,6 +102,7 @@
|
|||
"Object prototype must not be {} on a super property access") \
|
||||
M(ObjectPrototypeWrongType, "Prototype must be an object or null") \
|
||||
M(OptionIsNotValidValue, "{} is not a valid value for option {}") \
|
||||
M(OverloadResolutionFailed, "Overload resolution failed") \
|
||||
M(PrivateFieldAlreadyDeclared, "Private field '{}' has already been declared") \
|
||||
M(PrivateFieldDoesNotExistOnObject, "Private field '{}' does not exist on object") \
|
||||
M(PrivateFieldGetAccessorWithoutGetter, "Cannot get private field '{}' as accessor without getter") \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue