mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 03:08:13 +00:00
LibJS/Bytecode: Support private class fields
This is accomplished with two new instructions: - GetPrivateById - PutPrivateById Looks like 1616 new passes on test262. :^)
This commit is contained in:
parent
467ea86179
commit
e5c7d8407b
5 changed files with 93 additions and 0 deletions
|
@ -38,6 +38,7 @@
|
|||
O(GetMethod) \
|
||||
O(GetNewTarget) \
|
||||
O(GetObjectPropertyIterator) \
|
||||
O(GetPrivateById) \
|
||||
O(GetVariable) \
|
||||
O(GreaterThan) \
|
||||
O(GreaterThanEquals) \
|
||||
|
@ -76,6 +77,7 @@
|
|||
O(PushDeclarativeEnvironment) \
|
||||
O(PutById) \
|
||||
O(PutByValue) \
|
||||
O(PutPrivateById) \
|
||||
O(ResolveThisBinding) \
|
||||
O(ResolveSuperBase) \
|
||||
O(Return) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue