summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/AbstractOperations.cpp
AgeCommit message (Expand)Author
2021-08-10LibJS: Reduce copying of string data in String.prototypeTimothy Flynn
2021-08-10LibJS: Replace Vector<u16> usage in PrimitiveString wth Utf16StringTimothy Flynn
2021-08-08LibJS: Add missing spec linksLinus Groh
2021-08-01LibJS: Remove unused header includesBrian Gianforcaro
2021-07-25LibJS: Store the %Array.prototype.values% intrinsic on the global objectLinus Groh
2021-07-23LibJS: Implement RegExp.prototype [ @@replace ] with UTF-16 code unitsTimothy Flynn
2021-07-22LibJS: Implement String.prototype.replace with UTF-16 code unitsTimothy Flynn
2021-07-20LibJS: Fix that vm.in_strict_mode was propagated to eval and functionsdavidot
2021-07-07LibJS: Add missing spec link to ValidateAndApplyPropertyDescriptorIdan Horowitz
2021-07-07LibJS: Throw if the trap result of OwnPropertyKeys contains duplicatesIdan Horowitz
2021-07-05LibJS: Implement and use the GetSubstitution abstract operationTimothy Flynn
2021-07-05LibJS: Make Object.prototype.toString() fully spec compliantLinus Groh
2021-07-05LibJS: Make AbstractOperations::canonical_num... take a PropertyNamedavidot
2021-07-05LibJS: Finish implementing mapped arguments exotic objects :^)Andreas Kling
2021-07-05LibJS: Remove unnecessary value_or() from get()Linus Groh
2021-07-04LibJS: Rewrite most of Object for spec compliance :^)Linus Groh
2021-07-03LibJS: Bring the `super` keyword in line with the specAndreas Kling
2021-07-01LibJS: Drop "Record" suffix from all the *Environment record classesAndreas Kling
2021-06-30LibJS: Add a [[Realm]] getter to FunctionObject and use it where neededIdan Horowitz
2021-06-28LibJS: Add the CreateMappedArgumentsObject abstract operationAndreas Kling
2021-06-28LibJS: Add and use the %ThrowTypeError% intrinsicIdan Horowitz
2021-06-28LibJS: Implement the CreateUnmappedArgumentsObject abstract operationAndreas Kling
2021-06-27LibJS: Stop qualifying AK::FunctionAndreas Kling
2021-06-27LibJS: Rename Function => FunctionObjectAndreas Kling
2021-06-26LibJS: Implement the GetMethod() abstract operation as a Value methodLinus Groh
2021-06-25LibJS: Change PropertyName(Symbol*) => PropertyName(Symbol&)Linus Groh
2021-06-25LibJS: Remove outdated FIXME in GetThisEnvironmentAndreas Kling
2021-06-24Userland: Replace VERIFY(is<T>) with verify_cast<T>Andreas Kling
2021-06-24LibJS: Rename CallFrame => ExecutionContextAndreas Kling
2021-06-24LibJS: Add ObjectEnvironmentRecord.[[IsWithEnvironment]] fieldAndreas Kling
2021-06-23LibJS: Correct behaviour of direct vs. indirect evalAnonymous
2021-06-22LibJS: Split the per-call-frame environment into lexical and variableAndreas Kling
2021-06-22LibJS: Bring function environment records closer to the specAndreas Kling
2021-06-22LibJS: Implement the NewObjectEnvironment() abstract operationAndreas Kling
2021-06-22LibJS: Implement the NewDeclarativeEnvironment() abstract operationAndreas Kling
2021-06-20LibJS: Implement the GetPrototypeFromConstructor() abstract operationLinus Groh
2021-06-20LibJS: Implement the GetFunctionRealm() abstract operationLinus Groh
2021-06-20LibJS: Introduce AbstractOperations.{cpp,h} and move various AOs thereLinus Groh