..
builtins
LibJS: Pass in actual_delete_count to removed array creation in splice
2021-06-10 10:04:06 +01:00
classes
LibJS: Make super() in catch block work
2021-05-11 23:31:30 +01:00
functions
LibJS: Fix functions binding this to global object in strict mode
2021-06-04 13:00:37 +01:00
iterators
LibJS: Replace some is_nullish() checks with require_object_coercible()
2021-06-06 19:34:43 +02:00
loops
LibJS: Implicitly break for..in loop if the RHS result is nullish
2021-04-10 21:00:04 +02:00
operators
LibJS: Support deleting local variables with operator delete
2021-06-08 15:31:46 +01:00
syntax
LibJS: Add tests for destructuring assignments and function parameters
2021-05-29 23:02:23 +04:30
add-values-to-primitive.js
arguments-callee.js
LibJS: Add a basic test for arguments.callee
2021-03-17 21:54:52 +01:00
arguments-object.js
automatic-semicolon-insertion.js
break-continue-syntax-errors.js
comments-basic.js
computed-property-throws.js
const-declaration-missing-initializer.js
const-reassignment.js
custom-@@hasInstance.js
custom-@@toPrimitive.js
custom-@@toStringTag.js
debugger-statement.js
empty-statements.js
eval-basic.js
LibJS: Fallback to undefined if last value in eval() is empty
2021-04-25 22:52:19 +02:00
exception-in-catch-block.js
exception-ReferenceError.js
exponentiation-basic.js
global-var-let-const.js
LibJS: Only "var" declarations go in the global object at program level
2021-06-09 23:25:16 +02:00
if-statement-function-declaration.js
LibJS: Ensure function declarations don't leak outside function scopes
2021-05-13 23:59:00 +01:00
indexed-access-prototype-indirection.js
LibJS: Fix array hole and string object indexing prototype indirection
2021-04-11 18:15:47 +02:00
indexed-access-string-object.js
invalid-lhs-in-assignment.js
labels.js
let-scoping.js
new-expression.js
non-writable-assignment.js
LibJS: Throw TypeError on write to non-writable property in strict mode
2021-06-05 23:54:08 +01:00
numeric-literals-basic.js
object-basic.js
object-expression-computed-property.js
object-getter-setter-shorthand.js
object-method-shorthand.js
object-spread.js
ordinary-to-primitive.js
parseInt.js
LibJS: Uncomment and add parseInt tests
2021-06-06 01:34:22 +01:00
parser-declaration-in-single-statement-context.js
parser-line-terminators.js
parser-unary-associativity.js
program-strict-mode.js
return.js
runtime-error-call-stack-size.js
LibJS: Make Errors fully spec compliant
2021-04-12 09:38:57 +02:00
strict-mode-blocks.js
strict-mode-errors.js
LibJS: Use empty value for Reference unresolvable state, not undefined
2021-04-02 22:24:30 +02:00
string-escapes.js
string-spread.js
switch-basic.js
switch-break.js
tagged-template-literals.js
template-literals.js
test-common-tests.js
test-common.js
LibJS: Add the Set built-in object
2021-06-09 11:48:04 +01:00
throw-basic.js
to-number-basic.js
to-number-exception.js
try-catch-finally-nested.js
try-catch-finally-return.js
LibJS: Fix return value of TryStatement with finalizer
2021-04-13 15:40:52 +02:00
try-catch-finally.js
update-expression-on-member-expression.js
update-expressions-basic.js
use-strict-directive.js
var-multiple-declarator.js
var-scoping.js
variable-undefined.js
with-basic.js