summaryrefslogtreecommitdiff
path: root/Userland/Libraries
AgeCommit message (Expand)Author
2021-06-08LibCore/ArgsParser: Learn how to stop on first non-optionJelle Raaijmakers
2021-06-08LibCore: Support fine-grained failure behavior for ArgsParserJelle Raaijmakers
2021-06-08LibJS: Add sequence expression bytecode generationLuke
2021-06-08LibJS: Add conditional expression bytecode generationLuke
2021-06-08LibJS: Implement bytecode ops for logical expressionsGunnar Beutner
2021-06-08LibJS: Convert values to boolean for JumpIfTrue/JumpIfFalseGunnar Beutner
2021-06-08LibJS: Add the Symbol.species getter to the appropriate built-insIdan Horowitz
2021-06-07LibJS: Use to_property_key() a bunch in ReflectObjectLinus Groh
2021-06-07LibJS: Remove redundant exception checksLinus Groh
2021-06-07LibJS: Never omit setter/getter attributes in accessor descriptor objectLinus Groh
2021-06-07LibJS: Fix get_own_property_descriptor_object() field name orderLinus Groh
2021-06-07LibJS: Add missing cyclic prototype check to Object.setPrototypeOf()Linus Groh
2021-06-07LibJS: Use macros to generate the common unary/binary bytecode opsAndreas Kling
2021-06-07LibJS: Fix whitespace errors in ASTCodegen.cppLinus Groh
2021-06-07LibJS: Add bytecode generation for BinaryOp::InstanceOfLinus Groh
2021-06-07LibJS: Add bytecode generation for BinaryOp::InLinus Groh
2021-06-07LibJS: Make sure that if expressions yield the correct valueGunnar Beutner
2021-06-07LibJS: Make sure scope expressions yield the correct valueGunnar Beutner
2021-06-08LibAudio: WavLoader: Avoid reading partial samplesNick Miller
2021-06-08LibAudio+LibCore: Remove unnecessary IODeviceStreamReader.hNick Miller
2021-06-08LibGUI+SoundPlayer: Add Slider option to jump to cursorNick Miller
2021-06-07LibJS: Add <<, >> and >>> assignment operatorsRyan Chandler
2021-06-07LibJS: Add bytecode ops for <<, >> and >>>Luke
2021-06-07LibJS: Add support for various assignment operatorsRyan Chandler
2021-06-07LibJS: Add support for typed equality checksRyan Chandler
2021-06-07LibJS: Add bytecode generation for EmptyStatementGunnar Beutner
2021-06-07LibJS: Add bytecode generation for DebuggerStatementLinus Groh
2021-06-07LibJS: Add bytecode instructions for a bunch of unary operatorsLinus Groh
2021-06-07LibJS: Remove redundant Value() from bytecode bitwise ops execute()Linus Groh
2021-06-07LibJS: Add bytecode ops for loading boolean and null valuesGunnar Beutner
2021-06-07LibJS: Fix AbstractInequals returning result of AbstractEqualsRyan Chandler
2021-06-07LibJS: Add bytecode ops for &, | and ^Luke
2021-06-07LibJS: Add bytecode ops for >, >= and <=Gunnar Beutner
2021-06-07LibJS: Add bytecode instructions for modulo and exponentiationGunnar Beutner
2021-06-07LibJS: Add bytecode instructions for multiplication and divisionGunnar Beutner
2021-06-07LibJS: Remove unused Bytecode::Block::m_buffer_endAndreas Kling
2021-06-07LibJS: Add placeholder bytecode block sealing mechanismAndreas Kling
2021-06-07LibJS: Cache generated bytecode for ScriptFunctionAndreas Kling
2021-06-07LibJS: Move bytecode debug spam behind JS_BYTECODE_DEBUG :^)Andreas Kling
2021-06-07LibJS: Devirtualize and pack the bytecode stream :^)Andreas Kling
2021-06-07LibJS: Reset Bytecode::Interpreter's m_return_value when leaving run()Andreas Kling
2021-06-07LibJS: Make sure the global CallFrame doesn't go out of scopeAndreas Kling
2021-06-07LibJS: Add AbstractEquals bytecode instruction for == comparison :^)Andreas Kling
2021-06-07LibJS: Add basic support for "continue" in the bytecode VMAndreas Kling
2021-06-07LibJS: Add basic "if" statement support to the bytecode VM :^)Andreas Kling
2021-06-07LibJS: Compile ScriptFunctions into bytecode and run them that way :^)Andreas Kling
2021-06-07LibJS: Support basic function calls in the bytecode world :^)Andreas Kling
2021-06-07LibJS: Add a new EnterScope bytecode instructionAndreas Kling
2021-06-07LibJS: Create a global/outermost CallFrame for Bytecode::InterpreterAndreas Kling
2021-06-07LibJS: Add GetById bytecode instruction for object property retrievalAndreas Kling