summaryrefslogtreecommitdiff
path: root/Libraries/LibJS
AgeCommit message (Expand)Author
2020-07-06LibJS: Convert all remaining non-Array tests to the new system :)Matthew Olsson
2020-07-06LibJS: Convert remaining top-level tests to new systemMatthew Olsson
2020-07-06test-js: Use prettier and format all filesMatthew Olsson
2020-07-06test-js: Display messages from console.log in test outputMatthew Olsson
2020-07-06test-js: Allow skipping tests with "test.skip(name, callback)"Matthew Olsson
2020-07-06test-js: Remove run-tests.shMatthew Olsson
2020-07-06LibJS/test-js: Clean up test-js codeMatthew Olsson
2020-07-06LibJS: Fix String.raw.lengthMatthew Olsson
2020-07-06LibJS: Convert most builtin tests to new systemMatthew Olsson
2020-07-06LibJS: Convert Reflect object tests to new testing frameworkLinus Groh
2020-07-06LibJS: Add more test matchersMatthew Olsson
2020-07-06LibJS: Hide some debug output behind flagsMatthew Olsson
2020-07-06LibJS: Convert Proxy testsMatthew Olsson
2020-07-06LibJS: Add test-common.js tests, remove unused matchersMatthew Olsson
2020-07-06LibJS: Convert some top-level tests to the new systemMatthew Olsson
2020-07-06LibJS: Refactor run-tests.sh to use the new test-js programMatthew Olsson
2020-07-06LibJS/test-js: Create test-js program, prepare for test suite refactorMatthew Olsson
2020-07-03LibJS: Reformat run-tests.sh outputMatthew Olsson
2020-07-03LibJS: Hide interpreter exception debug output behind a flagMatthew Olsson
2020-07-03LibJS: Reorganize tests into subfoldersMatthew Olsson
2020-07-03LibJS: Use correct MarkedValueList append methodMatthew Olsson
2020-07-03LibJS: Remove extra colon in run-tests.sh outputMatthew Olsson
2020-07-01LibJS: Explicitly pass a "Function& new_target" to Function::constructMatthew Olsson
2020-07-01LibJS: Add Proxy [[Call]] and [[Construct]] testsMatthew Olsson
2020-07-01LibJS: Implement Proxy [[Call]] and [[Construct]] trapsMatthew Olsson
2020-06-30LibJS: Skip some Math object tests that fail on SerenityAndreas Kling
2020-06-29LibJS: Initial class implementation; allow super expressions in objectJack Karamanian
2020-06-29LibJS: Add Object::define_accessor()Jack Karamanian
2020-06-29LibJS: Define the "constructor" property on ScriptFunction's prototypeJack Karamanian
2020-06-26LibJS: run-test.sh emits test output if it is not "PASS"Matthew Olsson
2020-06-26LibJS: to_string_without_side_effects() should handle NativePropertyAndreas Kling
2020-06-25LibJS: Handle "receiver" argument in Reflect.{get,set}()Linus Groh
2020-06-23LibJS: Explicitly invoke Cell constructor in Object(Object& prototype)Andreas Kling
2020-06-23LibJS: Make NativeProperty a plain Cell instead of an ObjectAndreas Kling
2020-06-23LibJS: Clarify Object (base class) construction somewhatAndreas Kling
2020-06-23LibWeb: Make wrapper factory functions take JS::GlobalObject&Andreas Kling
2020-06-22LibWeb: Generate CanvasRenderingContext2D bindings from IDL :^)Andreas Kling
2020-06-22LibJS: expose some more math functionsstelar7
2020-06-21LibJS+LibWeb: Add JS::Object::inherits(class_name)Andreas Kling
2020-06-21LibWeb+LibJS: Add a naive way to check if a wrapper "is" a certain typeAndreas Kling
2020-06-20LibJS: Make Interpreter::construct() take a GlobalObject&Andreas Kling
2020-06-20LibJS: Object::initialize() overrides must always call base classAndreas Kling
2020-06-20LibJS: NativeProperty get/put should take a GlobalObject&Andreas Kling
2020-06-20LibJS: Split more native object constructors into construct/initializeAndreas Kling
2020-06-20LibJS: Remove some Interpreter::global_object() calls in JSONObjectAndreas Kling
2020-06-20LibJS: Pass GlobalObject& to Reference get/putAndreas Kling
2020-06-20LibJS: Make Value::to_object() take a GlobalObject&Andreas Kling
2020-06-20LibJS: More Interpreter::global_object() removalAndreas Kling
2020-06-20LibJS: Pass GlobalObject& when constructing an AccessorAndreas Kling
2020-06-20LibJS: Move native objects towards two-pass constructionAndreas Kling