summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS
AgeCommit message (Expand)Author
2021-06-07LibJS: Add basic support for while loops in the bytecode engineAndreas Kling
2021-06-07LibJS: Add LessThan bytecode instruction :^)Andreas Kling
2021-06-07LibJS: Print bytecode registers with format "$num" instead of "rnum"Andreas Kling
2021-06-07LibJS: Make Bytecode::Generator::emit() return the created instructionAndreas Kling
2021-06-07LibJS: Move AST bytecode generation virtuals to separate cpp fileAndreas Kling
2021-06-07LibJS: Add Sub bytecode instruction (subtract values)Andreas Kling
2021-06-07LibJS: Add formatting helper for Bytecode::RegisterAndreas Kling
2021-06-07LibJS: Some more opcodes for the bytecode VMAndreas Kling
2021-06-07LibJS: Add a VM accessor to Bytecode::Interpreter :^)Andreas Kling
2021-06-07LibJS: Start fleshing out a bytecode for the JavaScript engine :^)Andreas Kling
2021-06-07LibJS: Use ToPropertyKey in Object.getOwnPropertyDescriptorIdan Horowitz
2021-06-07LibJS: Add missing length field to Symbol.prototype[Symbol.ToPrimitive]Idan Horowitz
2021-06-07LibWeb+LibSyntax: Implement nested syntax highlightersAli Mohammad Pur
2021-06-07LibJS: Flatten Shape::property_table()Andreas Kling
2021-06-07LibJS: Add VM::dump_backtrace()Andreas Kling
2021-06-06LibJS: Use Array::create() length arg in favor of set_array_like_size()Linus Groh
2021-06-06LibJS: Add length parameter to Array::create()Linus Groh
2021-06-06LibJS: Add dbgln() to Heap::allocator_for_size() before crashingLinus Groh
2021-06-06LibJS: Check dates are below the `time_clip` thresholdIdan Horowitz
2021-06-06LibJS: Add Date.prototype.toJSON()Idan Horowitz
2021-06-06LibJS: Add Date.prototype[@@toPrimitive]()Idan Horowitz
2021-06-06LibJS: Add Date.setUTC{Date, Month, Hours, ...}() aliasesIdan Horowitz
2021-06-06LibJS: Store Date milliseconds as signed to support negative offsetsIdan Horowitz
2021-06-06LibJS: Add Date.prototype.setTime()Idan Horowitz
2021-06-06LibJS: Add Date.prototype.setMonth()Idan Horowitz
2021-06-06LibJS: Account for differences in month representations (0-11 vs 1-12)Idan Horowitz
2021-06-06LibJS: Add Date.prototype.setDate()Idan Horowitz
2021-06-06LibJS: Stub out Date.prototype.getTimezoneOffset()Idan Horowitz
2021-06-06LibJS: Ignore arguments in Date's constructor when called as a functionIdan Horowitz
2021-06-06LibJS: Create 1970-01-01 00:00:00 local time Date for invalid ctor callLinus Groh
2021-06-06LibJS: Make it so that Date.prototype.toGMTString === .toUTCStringLinus Groh
2021-06-06LibJS: Remove unused includes from SymbolPrototype.cppLinus Groh
2021-06-06LibJS: Implement String.prototype[@@toPrimitive]()Linus Groh
2021-06-06LibJS: Add String.prototype.valueOf()Linus Groh
2021-06-06LibJS: Remove String.prototype.lengthLinus Groh
2021-06-06LibJS: Replace SymbolPrototype's typed_this() with this_symbol_value()Linus Groh
2021-06-06LibJS: Replace StringPrototype's typed_this() with this_string_value()Linus Groh
2021-06-06LibJS: Replace bigint_object_from() with this_bigint_value()Linus Groh
2021-06-06LibJS: Update NumberPrototype's this_number_value() to take a ValueLinus Groh
2021-06-06LibJS: Replace some is_nullish() checks with require_object_coercible()Linus Groh
2021-06-06LibJS: Implement the RequireObjectCoercible abstract operationLinus Groh
2021-06-06LibJS: Pass unwinding target labels a bit more efficientlyAndreas Kling
2021-06-06LibJS: Make Number.prototype.toString() radix coercion spec compliantLinus Groh
2021-06-06LibJS: Implement Number.prototype.valueOf()Linus Groh
2021-06-06LibJS: Uncomment and add parseInt testsIdan Horowitz
2021-06-06LibJS: Correct modulo behaviour in to_i32 to match the specificationIdan Horowitz
2021-06-06LibJS: Trim initial whitespace in parseFloatIdan Horowitz
2021-06-06LibJS: Parse digits with parse_ascii_base36_digit in parseIntIdan Horowitz
2021-06-06LibJS: Set the length property of parseInt to 2Idan Horowitz
2021-06-05LibJS: Throw TypeError on write to non-writable property in strict modeIdan Horowitz