Ali Mohammad Pur 72ddaa31e3 LibJS: Implement parsing and execution of optional chains 3 years ago
..
builtins 76589d6728 LibJS: Change wording of ErrorType::NotA to be independent of context 3 years ago
classes def8b44c40 LibJS: Add support for public fields in classes 3 years ago
functions 99f9609e45 LibJS: Evaluate function arguments before checking callee type 3 years ago
iterators 40b8689f9b LibJS: Disallow duplicated variable declarations 4 years ago
loops a6fe27423a LibJS: Allow binding patterns as for in/of targets 4 years ago
operators c20669328d LibJS: Handle +Infinity, -Infinity, +0 and -0 in modulo operator 3 years ago
syntax 72ddaa31e3 LibJS: Implement parsing and execution of optional chains 3 years ago
add-values-to-primitive.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
arguments-callee.js 3217e6237c LibJS: Add a basic test for arguments.callee 4 years ago
arguments-object.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
automatic-semicolon-insertion.js 299c3069c1 LibJS/Tests: Use eval() for toEvalTo(), not Function() 4 years ago
break-continue-syntax-errors.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
comments-basic.js 597cf88c08 LibJS: Implement the 'Hashbang Grammar for JS' proposal 4 years ago
computed-property-throws.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
const-declaration-missing-initializer.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
const-reassignment.js be9df404fd LibJS: Re-enable "reassignment to const" test 4 years ago
custom-@@hasInstance.js 09bd5f8772 LibJS: Rewrite most of Object for spec compliance :^) 4 years ago
custom-@@toPrimitive.js 585123127e LibJS: Support @@toPrimitive in ToPrimitive abstract operation 4 years ago
custom-@@toStringTag.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
debugger-statement.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
duplicated-variable-declarations.js 40b8689f9b LibJS: Disallow duplicated variable declarations 4 years ago
empty-statements.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
eval-aliasing.js 2822da8c8f LibJS: Correct behaviour of direct vs. indirect eval 4 years ago
eval-basic.js 2822da8c8f LibJS: Correct behaviour of direct vs. indirect eval 4 years ago
exception-ReferenceError.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
exception-in-catch-block.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
exponentiation-basic.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
global-var-let-const.js 4bc98fd39f LibJS: Only "var" declarations go in the global object at program level 4 years ago
if-statement-function-declaration.js a92dc4e30d LibJS: Ensure function declarations don't leak outside function scopes 4 years ago
indexed-access-prototype-indirection.js 433a23cfde LibJS: Fix array hole and string object indexing prototype indirection 4 years ago
indexed-access-string-object.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
invalid-lhs-in-assignment.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
labels.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
let-scoping.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
new-expression.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
non-writable-assignment.js 2a8f4f097c LibJS: Throw TypeError on write to non-writable property in strict mode 4 years ago
numeric-literals-basic.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
object-basic.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
object-expression-computed-property.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
object-expression-numeric-property.js 83f61748a5 LibJS: Don't treat 2^32 - 1 as numeric PropertyName 4 years ago
object-getter-setter-shorthand.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
object-method-shorthand.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
object-spread.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
ordinary-to-primitive.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
parseInt.js 0bf597e99d LibJS: Uncomment and add parseInt tests 4 years ago
parser-declaration-in-single-statement-context.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
parser-line-terminators.js 3fee7b0d0b LibJS: Fix that windows style line endings were not ignored or converted 3 years ago
parser-unary-associativity.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
program-non-strict.js 295192bf15 LibJS: Add tests for strict mode and strict mode propagation 4 years ago
program-strict-mode.js 295192bf15 LibJS: Add tests for strict mode and strict mode propagation 4 years ago
return.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
runtime-error-call-stack-size.js da177c6517 LibJS: Make Errors fully spec compliant 4 years ago
strict-mode-blocks.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
strict-mode-errors.js bce7fdba81 LibJS: Bring Reference records a bit closer to the ECMAScript spec 4 years ago
string-escapes.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
string-spread.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
switch-basic.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
switch-break.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
tagged-template-literals.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
template-literals.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
test-common-tests.js 299c3069c1 LibJS/Tests: Use eval() for toEvalTo(), not Function() 4 years ago
test-common.js c194afd17c LibJS: Fix runaway let scope when parsing for-in/of statements 4 years ago
this-value-strict.js e1573991a3 LibJS: Fix this values in arrow functions 3 years ago
this-value.js e1573991a3 LibJS: Fix this values in arrow functions 3 years ago
throw-basic.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
to-number-basic.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
to-number-exception.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
try-catch-finally-nested.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
try-catch-finally-return.js 7cbede4342 LibJS: Fix return value of TryStatement with finalizer 4 years ago
try-catch-finally.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
unicode-identifier-escape.js 7bcffd1b6a LibJS: Fix some small remaining issues with parsing unicode escapes 3 years ago
update-expression-on-member-expression.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
update-expressions-basic.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
use-strict-directive.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
var-multiple-declarator.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
var-scoping.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
variable-undefined.js 13d7c09125 Libraries: Move to Userland/Libraries/ 4 years ago
with-basic.js db0a48d34c LibJS: Restore the environment if an exception is thrown in 'with' block 3 years ago