summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime
AgeCommit message (Expand)Author
2020-07-14LibJS: Implement Symbol.hasInstanceMatthew Olsson
2020-07-14LibJS: Implement spec-complient instance_of operationMatthew Olsson
2020-07-14LibJS: Integrate iterator protocol into language featuresMatthew Olsson
2020-07-13LibJS: Add StringIteratorMatthew Olsson
2020-07-11LibJS: Implement Symbol.toStringTagMatthew Olsson
2020-07-11LibJS: Implement spec-compliant Object.prototype.toStringMatthew Olsson
2020-07-11LibJS: Prefer "define_property" over "put"Matthew Olsson
2020-07-11LibJS: Use macros to enumerate well-known symbolsMatthew Olsson
2020-07-11LibJS: Start implementing iterable framework, add ArrayIteratorMatthew Olsson
2020-07-11LibJS: Renamed Object::GetOwnPropertyReturnMode to Object::PropertyKindMatthew Olsson
2020-07-11LibJS: Remove a few superfluous exception checksLinus Groh
2020-07-09LibJS: Integrate Symbols into objects as valid keysMatthew Olsson
2020-07-09LibJS: Move global symbol map from SymbolObject to InterpreterMatthew Olsson
2020-07-07LibJS: Object.preventExtensions should allow property modficationMatthew Olsson
2020-07-06LibJS/test-js: Clean up test-js codeMatthew Olsson
2020-07-06LibJS: Fix String.raw.lengthMatthew Olsson
2020-07-06LibJS: Hide some debug output behind flagsMatthew Olsson
2020-07-03LibJS: Use correct MarkedValueList append methodMatthew Olsson
2020-07-01LibJS: Explicitly pass a "Function& new_target" to Function::constructMatthew Olsson
2020-07-01LibJS: Implement Proxy [[Call]] and [[Construct]] trapsMatthew Olsson
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: 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
2020-06-20LibJS: Pass GlobalObject& to native functions and property accessorsAndreas Kling
2020-06-20LibJS: Remove some more use of Interpreter::global_object()Andreas Kling
2020-06-13LibJS: Add JSON.parseMatthew Olsson
2020-06-13LibJS: Add JSON.stringifyMatthew Olsson
2020-06-12AK: Make string-to-number conversion helpers return OptionalAndreas Kling
2020-06-11LibJS: Consolidate error messages into ErrorTypes.hMatthew Olsson
2020-06-08LibJS: Make more Interpreter functions take a GlobalObject&Andreas Kling