tangled
alpha
login
or
join now
jcs.org
/
serenity
0
fork
atom
Serenity Operating System
0
fork
atom
overview
issues
pulls
pipelines
serenity
/
Userland
/
Libraries
/
LibJS
/
Tests
/
at
master
8 folders
83 files
builtins
LibJS: Make int_part a double in StringPrototype::to_string
3 years ago
classes
LibJS: Make sure private identifier is valid in optional chain
3 years ago
functions
LibJS: Add tests for the new steps added to PerformEval
4 years ago
iterators
LibJS: Disallow duplicated variable declarations
4 years ago
loops
LibJS: Fix that constant declaration in for loop was mutable in body
3 years ago
modules
LibJS: Add using declaration support, RAII like operation in js
3 years ago
operators
LibJS: Use ToPropertyKey AO for computed member expression value
3 years ago
syntax
LibJS: Initialize functions in spec order
3 years ago
add-values-to-primitive.js
Libraries: Move to Userland/Libraries/
5 years ago
arguments-callee.js
LibJS: Add a basic test for arguments.callee
5 years ago
arguments-object.js
Libraries: Move to Userland/Libraries/
5 years ago
automatic-semicolon-insertion.js
LibJS/Tests: Use eval() for toEvalTo(), not Function()
4 years ago
break-continue-syntax-errors.js
Libraries: Move to Userland/Libraries/
5 years ago
comments-basic.js
LibJS: Make new lines in block comments reset line has token
4 years ago
computed-property-sideeffects.js
LibJS: Ensure we only call toString on computed properties once
4 years ago
computed-property-throws.js
Libraries: Move to Userland/Libraries/
5 years ago
const-declaration-missing-initializer.js
Libraries: Move to Userland/Libraries/
5 years ago
const-reassignment.js
LibJS: Re-enable "reassignment to const" test
5 years ago
custom-@@hasInstance.js
LibJS: Rewrite most of Object for spec compliance :^)
4 years ago
custom-@@toPrimitive.js
LibJS: Support @@toPrimitive in ToPrimitive abstract operation
5 years ago
custom-@@toStringTag.js
Libraries: Move to Userland/Libraries/
5 years ago
debugger-statement.js
Libraries: Move to Userland/Libraries/
5 years ago
duplicated-variable-declarations.js
LibJS: Enable now working tests for duplicated variable declarations
4 years ago
empty-statements.js
Libraries: Move to Userland/Libraries/
5 years ago
eval-aliasing.js
LibJS: Correct behaviour of direct vs. indirect eval
4 years ago
eval-basic.js
LibJS: Correct behaviour of direct vs. indirect eval
4 years ago
exception-ReferenceError.js
Libraries: Move to Userland/Libraries/
5 years ago
exception-in-catch-block.js
Libraries: Move to Userland/Libraries/
5 years ago
exponentiation-basic.js
LibJS: Unify exponentiation logic for ** operator and Math.pow
4 years ago
gc-deeply-nested-object-graph.js
LibJS: Use a work queue instead of the C++ stack for the GC mark phase
3 years ago
global-var-let-const.js
LibJS: Only "var" declarations go in the global object at program level
4 years ago
if-statement-function-declaration.js
LibJS: Ensure function declarations don't leak outside function scopes
4 years ago
indexed-access-prototype-indirection.js
LibJS: Fix array hole and string object indexing prototype indirection
5 years ago
indexed-access-string-object.js
Libraries: Move to Userland/Libraries/
5 years ago
invalid-lhs-in-assignment.js
LibJS: Allow CallExpressions as lhs of assignments in most cases
3 years ago
labels.js
LibJS: Replace the custom unwind mechanism with completions :^)
4 years ago
let-scoping.js
Libraries: Move to Userland/Libraries/
5 years ago
new-expression.js
Libraries: Move to Userland/Libraries/
5 years ago
non-writable-assignment.js
LibJS: Throw TypeError on write to non-writable property in strict mode
4 years ago
numeric-literals-basic.js
Libraries: Move to Userland/Libraries/
5 years ago
object-basic.js
LibJS: Don't update names of resulting functions in object expression
3 years ago
object-expression-__proto__.js
LibJS: Implement the object literal __proto__ property key special case
4 years ago
object-expression-computed-property.js
Libraries: Move to Userland/Libraries/
5 years ago
object-expression-numeric-property.js
LibJS: Allow BigInts as destructuring property names
3 years ago
object-getter-setter-shorthand.js
Libraries: Move to Userland/Libraries/
5 years ago
object-method-shorthand.js
Libraries: Move to Userland/Libraries/
5 years ago
object-spread.js
LibJS: Use CopyDataProperties when spreading in object expressions
4 years ago
ordinary-to-primitive.js
Libraries: Move to Userland/Libraries/
5 years ago
parseInt.js
LibJS: Uncomment and add parseInt tests
4 years ago
parser-declaration-in-single-statement-context.js
Libraries: Move to Userland/Libraries/
5 years ago
parser-line-terminators.js
LibJS: Implement create_dynamic_function() according to the spec
4 years ago
parser-unary-associativity.js
Libraries: Move to Userland/Libraries/
5 years ago
permanently-screwed-by-eval.js
LibJS: Fast non-local variable access :^)
4 years ago
program-non-strict.js
LibJS: Add tests for strict mode and strict mode propagation
4 years ago
program-strict-mode.js
LibJS: Add tests for strict mode and strict mode propagation
4 years ago
return.js
LibJS: Add tests for the new steps added to PerformEval
4 years ago
runtime-error-call-stack-size.js
LibJS: Throw InternalErrors instead of Errors on CallStackSizeExceeded
4 years ago
statement-with-many-labels.js
LibJS: Allow statements to have multiple labels
4 years ago
strict-mode-blocks.js
Libraries: Move to Userland/Libraries/
5 years ago
strict-mode-errors.js
LibJS: Make scoping follow the spec
4 years ago
string-basic.js
LibJS/Tests: Rename snake_case identifiers in string-basic.js
4 years ago
string-concatenation.js
LibJS: Combine UTF-16 surrogate pairs when concatenating strings
4 years ago
string-escapes.js
LibJS: Disallow '\8' and '\9' in strict mode due to being octal escapes
4 years ago
string-spread.js
Libraries: Move to Userland/Libraries/
5 years ago
switch-basic.js
LibJS: Fix switch skipping case evaluation when hitting the default case
4 years ago
switch-break.js
Libraries: Move to Userland/Libraries/
5 years ago
switch-default-before-case.js
LibJS: Defer execution of switch default clause until after case clauses
4 years ago
tagged-template-literals.js
LibJS: Use correct this value for tagged template calls
3 years ago
template-literals.js
LibJS: Treat '\\' as an escaped character in template literals
3 years ago
test-common-tests.js
LibJS/Tests: Use eval() for toEvalTo(), not Function()
4 years ago
test-common.js
LibJS: Add custom details to toBe{True, False} shown on failure
3 years ago
this-value-strict.js
LibJS/Tests: Enable two more skipped tests which now pass
4 years ago
this-value.js
LibJS/Tests: Enable two more skipped tests which now pass
4 years ago
throw-basic.js
Libraries: Move to Userland/Libraries/
5 years ago
to-number-basic.js
Libraries: Move to Userland/Libraries/
5 years ago
to-number-exception.js
Libraries: Move to Userland/Libraries/
5 years ago
try-catch-finally-nested.js
Libraries: Move to Userland/Libraries/
5 years ago
try-catch-finally-return.js
LibJS: Fix return value of TryStatement with finalizer
5 years ago
try-catch-finally.js
Libraries: Move to Userland/Libraries/
5 years ago
try-finally-break.js
LibJS: Add thorough tests for try/finally using continue and break
3 years ago
try-finally-continue.js
LibJS: Add thorough tests for try/finally using continue and break
3 years ago
unicode-identifier-escape.js
LibJS: Fix some small remaining issues with parsing unicode escapes
4 years ago
update-expression-on-member-expression.js
Libraries: Move to Userland/Libraries/
5 years ago
update-expressions-basic.js
Libraries: Move to Userland/Libraries/
5 years ago
use-strict-directive.js
Libraries: Move to Userland/Libraries/
5 years ago
using-declaration.js
LibJS: Add using declaration support, RAII like operation in js
3 years ago
using-for-loops.js
LibJS: Add using declaration support in for and for of loops
3 years ago
var-multiple-declarator.js
Libraries: Move to Userland/Libraries/
5 years ago
var-scoping.js
LibJS: Enable now working tests for duplicated variable declarations
4 years ago
variable-undefined.js
Libraries: Move to Userland/Libraries/
5 years ago
with-basic.js
LibJS: Restore the environment if an exception is thrown in 'with' block
4 years ago