mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:27:35 +00:00
LibWeb: Port Stream algorithms from JS::SafeFunction to JS::HeapFunction
This commit is contained in:
parent
e118430648
commit
5f484d200a
14 changed files with 211 additions and 189 deletions
|
@ -39,7 +39,7 @@ WebIDL::ExceptionOr<JS::NonnullGCPtr<WritableStream>> WritableStream::construct_
|
|||
// Note: This AO configures slot values which are already specified in the class's field initializers.
|
||||
|
||||
// 5. Let sizeAlgorithm be ! ExtractSizeAlgorithm(strategy).
|
||||
auto size_algorithm = extract_size_algorithm(strategy);
|
||||
auto size_algorithm = extract_size_algorithm(vm, strategy);
|
||||
|
||||
// 6. Let highWaterMark be ? ExtractHighWaterMark(strategy, 1).
|
||||
auto high_water_mark = TRY(extract_high_water_mark(strategy, 1));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue