1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00
serenity/Libraries/LibJS
Andreas Kling 324b92fd06 LibJS: Virtualize access to an Object's own properties
Object now has virtual get_own_property() and put_own_property() member
functions that can be overridden to provide custom behavior.

We use these virtuals to move Array-specific access behavior to Array.
2020-03-21 14:37:34 +01:00
..
Heap LibJS: Include the cell size in HeapBlock mmap names 2020-03-21 13:12:16 +01:00
Runtime LibJS: Virtualize access to an Object's own properties 2020-03-21 14:37:34 +01:00
AST.cpp LibJS: Some optimizations for ObjectExpression 2020-03-21 13:11:51 +01:00
AST.h LibJS: Some optimizations for ObjectExpression 2020-03-21 13:11:51 +01:00
Forward.h LibJS: Add Handle<T>, a strong C++ handle for keeping GC objects alive 2020-03-18 20:03:17 +01:00
Interpreter.cpp LibJS: Add ArrayPrototype and implement Array.prototype.push() 2020-03-20 21:56:40 +01:00
Interpreter.h LibJS: Add ArrayPrototype and implement Array.prototype.push() 2020-03-20 21:56:40 +01:00
Lexer.cpp LibJS: Parse object expressions 2020-03-21 10:08:58 +01:00
Lexer.h LibJS: Lex single quote strings, escaped chars and unterminated strings 2020-03-14 12:13:53 +01:00
Makefile LibJS: Add ArrayPrototype and implement Array.prototype.push() 2020-03-20 21:56:40 +01:00
Parser.cpp LibJS: Parse object expressions 2020-03-21 10:08:58 +01:00
Parser.h LibJS: Parse ArrayExpression and start implementing Array objects 2020-03-20 21:56:40 +01:00
Token.cpp LibJS: Parse object expressions 2020-03-21 10:08:58 +01:00
Token.h LibJS: Parse object expressions 2020-03-21 10:08:58 +01:00