serenity/Userland/Libraries/LibJS/Runtime
2021-06-12 14:40:34 +01:00
..
Accessor.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
AggregateError.cpp LibJS: Implement the Error Cause proposal 2021-06-11 21:34:05 +01:00
AggregateError.h LibJS: Implement the Error Cause proposal 2021-06-11 21:34:05 +01:00
AggregateErrorConstructor.cpp LibJS: Implement the Error Cause proposal 2021-06-11 21:34:05 +01:00
AggregateErrorConstructor.h LibJS: Implement AggregateError 2021-06-11 18:49:50 +01:00
AggregateErrorPrototype.cpp LibJS: Implement AggregateError 2021-06-11 18:49:50 +01:00
AggregateErrorPrototype.h LibJS: Implement AggregateError 2021-06-11 18:49:50 +01:00
Array.cpp LibJS: Add length parameter to Array::create() 2021-06-06 23:25:33 +01:00
Array.h LibJS: Add length parameter to Array::create() 2021-06-06 23:25:33 +01:00
ArrayBuffer.cpp LibWeb: Set a detach key for ArrayBuffers returned from WASM 2021-06-11 13:38:25 +01:00
ArrayBuffer.h LibWeb: Set a detach key for ArrayBuffers returned from WASM 2021-06-11 13:38:25 +01:00
ArrayBufferConstructor.cpp LibJS: Expose Symbol.species properties as getters 2021-06-12 00:44:15 +01:00
ArrayBufferConstructor.h LibJS: Add the Symbol.species getter to the appropriate built-ins 2021-06-08 09:09:51 +01:00
ArrayBufferPrototype.cpp LibJS: Allow and check for detached ArrayBuffers 2021-06-10 22:44:26 +01:00
ArrayBufferPrototype.h
ArrayConstructor.cpp LibJS: Expose Symbol.species properties as getters 2021-06-12 00:44:15 +01:00
ArrayConstructor.h LibJS: Add the Symbol.species getter to the appropriate built-ins 2021-06-08 09:09:51 +01:00
ArrayIterator.cpp Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
ArrayIterator.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
ArrayIteratorPrototype.cpp LibJS: Replace two instances of 'global_object.vm()' with just 'vm' 2021-06-08 19:13:14 +01:00
ArrayIteratorPrototype.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
ArrayPrototype.cpp LibJS: Add Array.prototype.keys() 2021-06-12 14:40:34 +01:00
ArrayPrototype.h LibJS: Add Array.prototype.keys() 2021-06-12 14:40:34 +01:00
BigInt.cpp
BigInt.h LibJS: Move Cell.{cpp,h} from Runtime/ to Heap/ 2021-05-17 19:53:00 +02:00
BigIntConstructor.cpp LibJS: Remove declarations of some TODO()'d BigInt and Promise functions 2021-06-02 21:06:21 +01:00
BigIntConstructor.h
BigIntObject.cpp
BigIntObject.h
BigIntPrototype.cpp LibJS: Replace bigint_object_from() with this_bigint_value() 2021-06-06 19:34:43 +02:00
BigIntPrototype.h
BooleanConstructor.cpp
BooleanConstructor.h
BooleanObject.cpp
BooleanObject.h
BooleanPrototype.cpp
BooleanPrototype.h
BoundFunction.cpp
BoundFunction.h
CommonPropertyNames.h LibJS: Implement Object.assign() 2021-06-12 11:36:17 +01:00
ConsoleObject.cpp
ConsoleObject.h
Date.cpp LibJS: Store Date milliseconds as signed to support negative offsets 2021-06-06 19:14:11 +01:00
Date.h LibJS: Check dates are below the time_clip threshold 2021-06-06 19:14:11 +01:00
DateConstructor.cpp LibJS: Check dates are below the time_clip threshold 2021-06-06 19:14:11 +01:00
DateConstructor.h
DatePrototype.cpp LibJS: Check dates are below the time_clip threshold 2021-06-06 19:14:11 +01:00
DatePrototype.h LibJS: Add Date.prototype.toJSON() 2021-06-06 19:14:11 +01:00
Error.cpp LibJS: Implement the Error Cause proposal 2021-06-11 21:34:05 +01:00
Error.h LibJS: Implement the Error Cause proposal 2021-06-11 21:34:05 +01:00
ErrorConstructor.cpp LibJS: Implement the Error Cause proposal 2021-06-11 21:34:05 +01:00
ErrorConstructor.h LibJS: Rename JS_ENUMERATE_{ERROR_SUBCLASSES => NATIVE_ERRORS} 2021-06-11 18:49:50 +01:00
ErrorPrototype.cpp LibJS: Rename JS_ENUMERATE_{ERROR_SUBCLASSES => NATIVE_ERRORS} 2021-06-11 18:49:50 +01:00
ErrorPrototype.h LibJS: Rename JS_ENUMERATE_{ERROR_SUBCLASSES => NATIVE_ERRORS} 2021-06-11 18:49:50 +01:00
ErrorTypes.cpp Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
ErrorTypes.h LibJS: Allow and check for detached ArrayBuffers 2021-06-10 22:44:26 +01:00
Exception.cpp LibJS: Optimize insertion order in the Exception constructor 2021-06-03 14:47:15 +01:00
Exception.h LibJS: Avoid allocations in the Exception constructor 2021-06-03 14:47:15 +01:00
Function.cpp AK: Rename Vector::append(Vector) => Vector::extend(Vector) 2021-06-12 13:24:45 +02:00
Function.h
FunctionConstructor.cpp
FunctionConstructor.h
FunctionPrototype.cpp LibJS: Use create_list_from_array_like() in Function.prototype.apply() 2021-06-09 23:46:37 +01:00
FunctionPrototype.h
GeneratorObject.cpp LibJS: Implement generator functions (only in bytecode mode) 2021-06-11 00:30:09 +02:00
GeneratorObject.h LibJS: Implement generator functions (only in bytecode mode) 2021-06-11 00:30:09 +02:00
GlobalObject.cpp LibJS: Add the WeakMap built-in object 2021-06-12 10:44:28 +01:00
GlobalObject.h LibJS: Only initialize in add_constructor() if not already done 2021-06-11 18:49:50 +01:00
IndexedProperties.cpp LibJS: Handle OOB access in GenericIndexedPropertyStorage::take_last() 2021-05-17 23:20:29 +01:00
IndexedProperties.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
IteratorOperations.cpp LibJS: Replace iterator hint string argument with an enum 2021-06-02 20:52:46 +01:00
IteratorOperations.h LibJS: Replace iterator hint string argument with an enum 2021-06-02 20:52:46 +01:00
IteratorPrototype.cpp Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
IteratorPrototype.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
JobCallback.h
JSONObject.cpp LibJS: Handle Proxy with Array target in IsArray() abstract operation 2021-06-08 23:53:13 +02:00
JSONObject.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
LexicalEnvironment.cpp LibJS: Support deleting local variables with operator delete 2021-06-08 15:31:46 +01:00
LexicalEnvironment.h LibJS: Support deleting local variables with operator delete 2021-06-08 15:31:46 +01:00
MarkedValueList.cpp
MarkedValueList.h AK: Rename Vector::append(Vector) => Vector::extend(Vector) 2021-06-12 13:24:45 +02:00
MathObject.cpp LibJS: Correctly handle NaN and negative infinity in Math.atan2 2021-06-05 14:56:58 +01:00
MathObject.h LibJS: Add Math.imul() 2021-06-05 14:56:58 +01:00
NativeFunction.cpp LibJS: Don't create lexical environment for native (C++) function calls 2021-06-09 20:54:01 +02:00
NativeFunction.h
NativeProperty.cpp
NativeProperty.h
NumberConstructor.cpp LibJS: Add the Number.{MAX, MIN}_VALUE constants 2021-06-05 02:38:37 +01:00
NumberConstructor.h
NumberObject.cpp
NumberObject.h
NumberPrototype.cpp LibJS: Update NumberPrototype's this_number_value() to take a Value 2021-06-06 19:34:43 +02:00
NumberPrototype.h LibJS: Implement Number.prototype.valueOf() 2021-06-06 06:56:08 +01:00
Object.cpp LibJS: Add the Object::define_native_accessor method 2021-06-12 00:44:15 +01:00
Object.h LibJS: Add the Object::define_native_accessor method 2021-06-12 00:44:15 +01:00
ObjectConstructor.cpp LibJS: Implement Object.assign() 2021-06-12 11:36:17 +01:00
ObjectConstructor.h LibJS: Implement Object.assign() 2021-06-12 11:36:17 +01:00
ObjectPrototype.cpp LibJS: Replace two instances of 'global_object.vm()' with just 'vm' 2021-06-08 19:13:14 +01:00
ObjectPrototype.h
PrimitiveString.cpp
PrimitiveString.h LibJS: Move Cell.{cpp,h} from Runtime/ to Heap/ 2021-05-17 19:53:00 +02:00
Promise.cpp
Promise.h
PromiseConstructor.cpp LibJS: Fix attributes of Promise.prototype 2021-06-12 01:19:07 +01:00
PromiseConstructor.h LibJS: Add the Symbol.species getter to the appropriate built-ins 2021-06-08 09:09:51 +01:00
PromiseJobs.cpp
PromiseJobs.h
PromisePrototype.cpp LibJS: Explicitly return and accept a Function* in species_constructor 2021-06-10 22:44:26 +01:00
PromisePrototype.h
PromiseReaction.cpp LibJS: Remove GlobalObject& argument from VM::construct() 2021-06-10 23:17:29 +02:00
PromiseReaction.h
PromiseResolvingFunction.cpp
PromiseResolvingFunction.h
PropertyAttributes.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
PropertyName.h LibJS: Change PropertyName::as_number() return type to u32 2021-04-25 22:42:48 +02:00
ProxyConstructor.cpp LibJS: Implement Proxy.revocable() 2021-06-08 23:53:13 +02:00
ProxyConstructor.h LibJS: Implement Proxy.revocable() 2021-06-08 23:53:13 +02:00
ProxyObject.cpp Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
ProxyObject.h LibJS: Handle Proxy with Array target in IsArray() abstract operation 2021-06-08 23:53:13 +02:00
Reference.cpp LibJS: Support deleting local variables with operator delete 2021-06-08 15:31:46 +01:00
Reference.h LibJS: Support deleting local variables with operator delete 2021-06-08 15:31:46 +01:00
ReflectObject.cpp LibJS: Remove GlobalObject& argument from VM::construct() 2021-06-10 23:17:29 +02:00
ReflectObject.h
RegExpConstructor.cpp LibJS: Expose Symbol.species properties as getters 2021-06-12 00:44:15 +01:00
RegExpConstructor.h LibJS: Add the Symbol.species getter to the appropriate built-ins 2021-06-08 09:09:51 +01:00
RegExpObject.cpp LibJS: Bring back runtime validation of RegExp flags 2021-05-11 22:47:14 +01:00
RegExpObject.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
RegExpPrototype.cpp AK: Rename Vector::append(Vector) => Vector::extend(Vector) 2021-06-12 13:24:45 +02:00
RegExpPrototype.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
ScopeObject.cpp
ScopeObject.h LibJS: Support deleting local variables with operator delete 2021-06-08 15:31:46 +01:00
ScriptFunction.cpp LibJS: Use an enum class instead of 'bool is_generator' 2021-06-11 19:42:58 +04:30
ScriptFunction.h LibJS: Use an enum class instead of 'bool is_generator' 2021-06-11 19:42:58 +04:30
Set.cpp LibJS: Stop inheriting from Set in SetPrototype 2021-06-09 18:01:19 +01:00
Set.h LibJS: Stop inheriting from Set in SetPrototype 2021-06-09 18:01:19 +01:00
SetConstructor.cpp LibJS: Expose Symbol.species properties as getters 2021-06-12 00:44:15 +01:00
SetConstructor.h LibJS: Add the Set built-in object 2021-06-09 11:48:04 +01:00
SetIterator.cpp LibJS: Add the SetIterator built-in and Set.prototype.{values, entries} 2021-06-09 11:48:04 +01:00
SetIterator.h LibJS: Add the SetIterator built-in and Set.prototype.{values, entries} 2021-06-09 11:48:04 +01:00
SetIteratorPrototype.cpp LibJS: Add the SetIterator built-in and Set.prototype.{values, entries} 2021-06-09 11:48:04 +01:00
SetIteratorPrototype.h LibJS: Add the SetIterator built-in and Set.prototype.{values, entries} 2021-06-09 11:48:04 +01:00
SetPrototype.cpp LibJS: Stop inheriting from Set in SetPrototype 2021-06-09 18:01:19 +01:00
SetPrototype.h LibJS: Stop inheriting from Set in SetPrototype 2021-06-09 18:01:19 +01:00
Shape.cpp LibJS: Flatten Shape::property_table() 2021-06-07 10:22:25 +02:00
Shape.h LibJS: Make the forward transition chain weakly cached 2021-05-17 21:40:18 +02:00
StringConstructor.cpp LibJS: Handle Proxy with Array target in IsArray() abstract operation 2021-06-08 23:53:13 +02:00
StringConstructor.h
StringIterator.cpp Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
StringIterator.h AK: Rename Utf8CodepointIterator => Utf8CodePointIterator 2021-06-01 09:45:52 +02:00
StringIteratorPrototype.cpp Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
StringIteratorPrototype.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
StringObject.cpp LibJS: Remove String.prototype.length 2021-06-06 19:34:43 +02:00
StringObject.h LibJS: Remove String.prototype.length 2021-06-06 19:34:43 +02:00
StringOrSymbol.h LibJS: Replace StringOrSymbol::from_value with Value::to_property_key 2021-06-05 14:15:28 +01:00
StringPrototype.cpp LibJS: Add String.prototype.valueOf() 2021-06-06 19:34:43 +02:00
StringPrototype.h LibJS: Add String.prototype.valueOf() 2021-06-06 19:34:43 +02:00
Symbol.cpp Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
Symbol.h LibJS: Move Cell.{cpp,h} from Runtime/ to Heap/ 2021-05-17 19:53:00 +02:00
SymbolConstructor.cpp Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
SymbolConstructor.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
SymbolObject.cpp Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
SymbolObject.h Userland: Use mattco@serenityos.org for my copyright headers 2021-04-23 08:24:53 +02:00
SymbolPrototype.cpp LibJS: Add missing length field to Symbol.prototype[Symbol.ToPrimitive] 2021-06-07 16:51:09 +01:00
SymbolPrototype.h LibJS: Implement String.prototype[@@toPrimitive]() 2021-06-06 19:34:43 +02:00
TemporaryClearException.h LibJS: Use linusg@serenityos.org for my new copyright headers, too 2021-04-24 20:16:31 +02:00
TypedArray.cpp LibJS: Allow and check for detached ArrayBuffers 2021-06-10 22:44:26 +01:00
TypedArray.h LibJS+LibWeb: Make Uint8ClampedArray use TypedArray 2021-05-26 15:34:13 +04:30
TypedArrayConstructor.cpp LibJS: Expose Symbol.species properties as getters 2021-06-12 00:44:15 +01:00
TypedArrayConstructor.h LibJS: Add the Symbol.species getter to the appropriate built-ins 2021-06-08 09:09:51 +01:00
TypedArrayPrototype.cpp LibJS: Allow and check for detached ArrayBuffers 2021-06-10 22:44:26 +01:00
TypedArrayPrototype.h LibJS: Expose TypedArray.prototype.byteOffset 2021-05-21 22:52:35 +01:00
Value.cpp LibJS: Explicitly return and accept a Function* in species_constructor 2021-06-10 22:44:26 +01:00
Value.h LibJS: Explicitly return and accept a Function* in species_constructor 2021-06-10 22:44:26 +01:00
VM.cpp AK: Rename Vector::append(Vector) => Vector::extend(Vector) 2021-06-12 13:24:45 +02:00
VM.h LibJS: Remove GlobalObject& argument from VM::construct() 2021-06-10 23:17:29 +02:00
WeakContainer.h LibJS: Generify the garbage collector's weak container notifications 2021-06-12 10:44:28 +01:00
WeakMap.cpp LibJS: Add the WeakMap built-in object 2021-06-12 10:44:28 +01:00
WeakMap.h LibJS: Add the WeakMap built-in object 2021-06-12 10:44:28 +01:00
WeakMapConstructor.cpp LibJS: Add the WeakMap built-in object 2021-06-12 10:44:28 +01:00
WeakMapConstructor.h LibJS: Add the WeakMap built-in object 2021-06-12 10:44:28 +01:00
WeakMapPrototype.cpp LibJS: Add all of the WeakMap.prototype methods (delete, get, has, set) 2021-06-12 10:44:28 +01:00
WeakMapPrototype.h LibJS: Add all of the WeakMap.prototype methods (delete, get, has, set) 2021-06-12 10:44:28 +01:00
WeakSet.cpp LibJS: Generify the garbage collector's weak container notifications 2021-06-12 10:44:28 +01:00
WeakSet.h LibJS: Generify the garbage collector's weak container notifications 2021-06-12 10:44:28 +01:00
WeakSetConstructor.cpp LibJS: Add the WeakSet built-in object 2021-06-09 21:52:25 +01:00
WeakSetConstructor.h LibJS: Add the WeakSet built-in object 2021-06-09 21:52:25 +01:00
WeakSetPrototype.cpp LibJS: Add all of the WeakSet.prototype methods (add, delete, has) 2021-06-09 21:52:25 +01:00
WeakSetPrototype.h LibJS: Add all of the WeakSet.prototype methods (add, delete, has) 2021-06-09 21:52:25 +01:00
WithScope.cpp LibJS: Support deleting local variables with operator delete 2021-06-08 15:31:46 +01:00
WithScope.h LibJS: Support deleting local variables with operator delete 2021-06-08 15:31:46 +01:00