diff options
Diffstat (limited to 'ext/web/06_streams.js')
-rw-r--r-- | ext/web/06_streams.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/web/06_streams.js b/ext/web/06_streams.js index 5b1c0141d..1bad4f314 100644 --- a/ext/web/06_streams.js +++ b/ext/web/06_streams.js @@ -23,6 +23,7 @@ BigInt64ArrayPrototype, BigUint64ArrayPrototype, DataView, + FinalizationRegistry, Int8ArrayPrototype, Int16ArrayPrototype, Int32ArrayPrototype, @@ -45,7 +46,8 @@ RangeError, ReflectHas, SafePromiseAll, - SharedArrayBuffer, + // TODO(lucacasonato): add SharedArrayBuffer to primordials + // SharedArrayBufferPrototype Symbol, SymbolAsyncIterator, SymbolFor, @@ -205,6 +207,7 @@ assert(typeof O === "object"); assert( ObjectPrototypeIsPrototypeOf(ArrayBufferPrototype, O) || + // deno-lint-ignore prefer-primordials ObjectPrototypeIsPrototypeOf(SharedArrayBuffer.prototype, O), ); if (isDetachedBuffer(O)) { |