From 5309b9da3872f55cd6fe9c8d9b58fe3e99b1dbf3 Mon Sep 17 00:00:00 2001 From: Michael Ficarra Date: Tue, 19 Sep 2023 14:59:04 -0700 Subject: [PATCH] Editorial: remove isLittleEndian parameter of GetModifySetValueInBuffer (#3173) --- spec.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/spec.html b/spec.html index 8972baa32f..c391103f9d 100644 --- a/spec.html +++ b/spec.html @@ -42674,7 +42674,6 @@

_type_: a TypedArray element type, _value_: a Number or a BigInt, _op_: a read-modify-write modification function, - optional _isLittleEndian_: a Boolean, ): a Number or a BigInt

@@ -42685,7 +42684,7 @@

1. Assert: _value_ is a BigInt if IsBigIntElementType(_type_) is *true*; otherwise, _value_ is a Number. 1. Let _block_ be _arrayBuffer_.[[ArrayBufferData]]. 1. Let _elementSize_ be the Element Size value specified in for Element Type _type_. - 1. If _isLittleEndian_ is not present, set _isLittleEndian_ to the value of the [[LittleEndian]] field of the surrounding agent's Agent Record. + 1. Let _isLittleEndian_ be the value of the [[LittleEndian]] field of the surrounding agent's Agent Record. 1. Let _rawBytes_ be NumericToRawBytes(_type_, _value_, _isLittleEndian_). 1. If IsSharedArrayBuffer(_arrayBuffer_) is *true*, then 1. Let _execution_ be the [[CandidateExecution]] field of the surrounding agent's Agent Record.