1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-17 13:32:08 +00:00
serenity/Libraries/LibJS
Andreas Kling 627fd6374b LibJS: Add Uint8ClampedArray :^)
This is a special kind of byte array that clamps its values to 0...255
It will be used for HTML ImageData objects.

I made Object::put_by_index() and get_by_index() virtual for this.
We'll probably need to make non-numeric property name lookups virtual
as well, but this solves my current problem well enough.
2020-04-21 23:47:39 +02:00
..
Heap LibJS: Add MarkedValueList and use it for argument passing 2020-04-19 17:34:33 +02:00
Runtime LibJS: Add Uint8ClampedArray :^) 2020-04-21 23:47:39 +02:00
Tests LibJS: Implement Function.prototype.bind() 2020-04-21 12:23:07 +02:00
AST.cpp LibJS: Implement Function.prototype.bind() 2020-04-21 12:23:07 +02:00
AST.h LibJS: Improve CallExpression::execute()'s error messages 2020-04-19 11:00:39 +02:00
Forward.h LibJS: Add Uint8ClampedArray :^) 2020-04-21 23:47:39 +02:00
Interpreter.cpp LibJS: Rename global_call_fram to global_call_frame 2020-04-21 09:43:56 +02:00
Interpreter.h LibJS: Add MarkedValueList and use it for argument passing 2020-04-19 17:34:33 +02:00
Lexer.cpp LibJS: Handle HTML-style comments 2020-04-14 12:54:09 +02:00
Lexer.h LibJS: Handle HTML-style comments 2020-04-14 12:54:09 +02:00
Makefile LibJS: Add Uint8ClampedArray :^) 2020-04-21 23:47:39 +02:00
Parser.cpp LibJS: Allow reserved words as keys in object expressions. 2020-04-18 22:23:20 +02:00
Parser.h LibJS: Allow reserved words as keys in object expressions. 2020-04-18 22:23:20 +02:00
Token.cpp LibJS: Allow reserved words as keys in object expressions. 2020-04-18 22:23:20 +02:00
Token.h LibJS: Allow reserved words as keys in object expressions. 2020-04-18 22:23:20 +02:00