1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 15:45:08 +00:00
serenity/Base/home/anon/js
Andreas Kling 2c5b9fb8f9 LibJS: Add StringPrototype and make it the prototype of StringObject
This patch adds String.prototype.charAt() to demonstrate that prototype
property lookup works, and that you can call a prototype function on an
object, and it will do what you expect. :^)
2020-03-15 15:02:49 +01:00
..
charAt.js LibJS: Add StringPrototype and make it the prototype of StringObject 2020-03-15 15:02:49 +01:00
for-loop.js Meta: Add for-loop JavaScript test program 2020-03-12 13:42:23 +01:00
forced-gc.js LibJS: Replace $gc() hack with a NativeFunction on the global object 2020-03-12 20:04:54 +01:00
function-with-arguments.js LibJS: Add test for function with arguments 2020-03-12 13:27:28 +01:00
javascript.files HackStudio: Add Javascript projects 2020-03-13 20:19:01 +01:00
native-function.js LibJS: Add NativeFunction, a callable wrapper around a C++ lambda 2020-03-12 19:54:47 +01:00
operator-precedence.js LibJS: Add operator precedence parsing 2020-03-14 00:11:24 +01:00
simple-function.js js: Take the script file as a command-line argument 2020-03-12 10:52:47 +01:00
simple-parse.js js: Take the script file as a command-line argument 2020-03-12 10:52:47 +01:00
simple-scopes.js js: Take the script file as a command-line argument 2020-03-12 10:52:47 +01:00
simple-variables.js js: Take the script file as a command-line argument 2020-03-12 10:52:47 +01:00
string-length.js LibJS: Implement basic MemberExpression parsing 2020-03-12 13:05:57 +01:00
strings.js LibJS: Unescape strings in Token::string_value() 2020-03-14 16:00:28 +01:00