Age | Commit message (Expand) | Author |
2020-04-15 | LibJS: Check length property of Array.prototype.join in its test | Linus Groh |
2020-04-15 | LibJS: Add Array.prototype.join() | Andreas Kling |
2020-04-15 | LibJS: Adding two values should convert them to primitives first | Andreas Kling |
2020-04-15 | LibJS: Pass the Interpreter& to binary/logical/unary helpers | Andreas Kling |
2020-04-15 | LibJS: Add String.prototype.{trim, trimStart, trimEnd} (#1792) | Kesse Jones |
2020-04-14 | LibJS: Redirect stderr to /dev/null when running js in run-tests | Linus Groh |
2020-04-14 | LibJS: Add missing load("test-common.js") to comments-basic.js | Linus Groh |
2020-04-14 | LibJS: Add Array.prototype.map() | Linus Groh |
2020-04-14 | LibJS: Add Array.prototype.filter() | Linus Groh |
2020-04-14 | LibJS: Add Array.prototype.forEach() | Linus Groh |
2020-04-14 | LibJS: Add Array.prototype.unshift() | Linus Groh |
2020-04-14 | LibJS: Support multiple arguments in Array.prototype.push() | Linus Groh |
2020-04-14 | LibJS: Remove shift, pop, push functions from Array object | Linus Groh |
2020-04-14 | js/LibJS: Move test functions to pure javascript. | Brian Gianforcaro |
2020-04-14 | LibJS: Handle HTML-style comments | Stephan Unverwerth |
2020-04-13 | LibJS: Use HashMap::ensure_capacity() in enter_scope() | Andreas Kling |
2020-04-13 | LibJS: Add more number test cases for #1680 | Stephan Unverwerth |
2020-04-13 | LibJS: Remove Interpreter::declare_variable() | Andreas Kling |
2020-04-13 | LibJS: Hoist variable declarations to the nearest relevant scope | Andreas Kling |
2020-04-13 | LibJS: Use assertNotReached() in tests | Linus Groh |
2020-04-13 | LibJS: Fix test files indentation (4 spaces) | Linus Groh |
2020-04-13 | LibJS: Implement Error.prototype.name setter (#1776) | Brian Gianforcaro |
2020-04-13 | LibJS: Do not execute scripts with parse errors | Stephan Unverwerth |
2020-04-13 | LibJS: Tweak FunctionPrototype::to_string and constructors | Stephan Unverwerth |
2020-04-13 | LibJS: Throw on assignment of an const variable | Brian Gianforcaro |
2020-04-13 | LibJS: Parse "this" as ThisExpression | Stephan Unverwerth |
2020-04-12 | LibJS: Cache a FlyString for "this" to speed up variable lookup | Andreas Kling |
2020-04-12 | LibJS: Add console.{debug,info,warn,error}() | Linus Groh |
2020-04-12 | LibJS: Add js_negative_infinity() | Linus Groh |
2020-04-12 | LibJS: Handle Infinity in Value::to_number() | Linus Groh |
2020-04-12 | LibJS: Let's show a few more decimals when stringifying numeric values | Andreas Kling |
2020-04-11 | LibJS: Add console.trace() | Linus Groh |
2020-04-11 | LibJS: Make Function and CallFrame aware of their function name | Linus Groh |
2020-04-10 | LibJS: Improve Object.defineProperty test | 4ourbit |
2020-04-10 | LibJS: Add String.prototype.pad{Start,End}() | Linus Groh |
2020-04-10 | LibJS: Remove assert function from Object.defineProperty() test | Linus Groh |
2020-04-10 | LibJS: Key shape transitions on both property name and attributes | Andreas Kling |
2020-04-10 | LibJS: Remove mock String.prototype from tests | Linus Groh |
2020-04-10 | LibJS: Add String.prototype.toString() | Linus Groh |
2020-04-10 | LibJS: Add String constructor :^) | Andreas Kling |
2020-04-10 | LibJS: Use enumerator macros for boilerplate code around native types | Andreas Kling |
2020-04-10 | LibJS: Boolean, Number and String prototypes should have values too | Andreas Kling |
2020-04-10 | LibJS: Throw real TypeError, ReferenceError, etc objects | Andreas Kling |
2020-04-10 | LibJS: Add all the Error subclasses | Andreas Kling |
2020-04-10 | LibJS: Add tests for exception if assignment LHS is invalid | Barney Wilks |
2020-04-10 | LibJS: Throw exception if LHS of assignment is of unexpected type | Barney Wilks |
2020-04-10 | LibJS: Add property configuration transitions | Andreas Kling |
2020-04-10 | LibJS: Add Object.defineProperty() and start caring about attributes | Andreas Kling |
2020-04-09 | LibJS: Add globalThis | Linus Groh |
2020-04-09 | LibJS: Fix BooleanPrototype build | Andreas Kling |