1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00
serenity/Libraries/LibJS
Andreas Kling 8f7d4f67a4 LibJS: Support reading/writing elements in an Array via Object get/put
I'm not completely thrilled about Object::get() and Object::put() doing
special-case stuff for arrays, and we should probably come up with a
better abstraction for it.

But at least it works for now, which is really nice. :^)
2020-03-20 21:56:40 +01:00
..
Heap LibJS: Add missing copyright headers 2020-03-18 20:21:06 +01:00
Runtime LibJS: Support reading/writing elements in an Array via Object get/put 2020-03-20 21:56:40 +01:00
AST.cpp LibJS: Parse computed MemberExpressions 2020-03-20 21:56:40 +01:00
AST.h LibJS: Parse computed MemberExpressions 2020-03-20 21:56:40 +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 Interpreter::call(Function*, this_value, arguments) 2020-03-18 17:13:22 +01:00
Interpreter.h LibJS: Add Interpreter::call(Function*, this_value, arguments) 2020-03-18 17:13:22 +01:00
Lexer.cpp LibJS: Implement null and undefined literals 2020-03-16 13:42:13 +01:00
Lexer.h LibJS: Lex single quote strings, escaped chars and unterminated strings 2020-03-14 12:13:53 +01:00
Makefile LibJS: Parse ArrayExpression and start implementing Array objects 2020-03-20 21:56:40 +01:00
Parser.cpp LibJS: Parse computed MemberExpressions 2020-03-20 21:56:40 +01:00
Parser.h LibJS: Parse ArrayExpression and start implementing Array objects 2020-03-20 21:56:40 +01:00
Token.cpp LibJS: Implement null and undefined literals 2020-03-16 13:42:13 +01:00
Token.h LibJS: Implement null and undefined literals 2020-03-16 13:42:13 +01:00