| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -288,6 +288,7 @@ overrides: | |||
| 288 | 288 | - ./internal/vm.js | |
| 289 | 289 | - ./internal/watch_mode/*.js | |
| 290 | 290 | - ./internal/webidl.js | |
| 291 | + - ./internal/webstreams/*.js | ||
| 291 | 292 | - ./module.js | |
| 292 | 293 | - ./path/*.js | |
| 293 | 294 | - ./process.js | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -504,7 +504,7 @@ class ReadableStream { | |||
| 504 | 504 | done = true; | |
| 505 | 505 | readableStreamReaderGenericRelease(reader); | |
| 506 | 506 | promise.reject(error); | |
| 507 | - } | ||
| 507 | + }, | ||
| 508 | 508 | }); | |
| 509 | 509 | return promise.promise; | |
| 510 | 510 | } | |
@@ -567,7 +567,7 @@ class ReadableStream { | |||
| 567 | 567 | returnSteps(error); | |
| 568 | 568 | }, | |
| 569 | 569 | ||
| 570 | - [SymbolAsyncIterator]() { return this; } | ||
| 570 | + [SymbolAsyncIterator]() { return this; }, | ||
| 571 | 571 | }, AsyncIterator); | |
| 572 | 572 | } | |
| 573 | 573 | ||
@@ -605,7 +605,7 @@ class ReadableStream { | |||
| 605 | 605 | return { | |
| 606 | 606 | data: { port: this[kState].transfer.port2 }, | |
| 607 | 607 | deserializeInfo: | |
| 608 | - 'internal/webstreams/readablestream:TransferredReadableStream' | ||
| 608 | + 'internal/webstreams/readablestream:TransferredReadableStream', | ||
| 609 | 609 | }; | |
| 610 | 610 | } | |
| 611 | 611 | ||
@@ -1225,7 +1225,7 @@ function createTeeReadableStream(start, pull, cancel) { | |||
| 1225 | 1225 | ObjectCreate(null, { | |
| 1226 | 1226 | start: { __proto__: null, value: start }, | |
| 1227 | 1227 | pull: { __proto__: null, value: pull }, | |
| 1228 | - cancel: { __proto__: null, value: cancel } | ||
| 1228 | + cancel: { __proto__: null, value: cancel }, | ||
| 1229 | 1229 | }), | |
| 1230 | 1230 | 1, | |
| 1231 | 1231 | () => 1); | |
@@ -1917,7 +1917,7 @@ function readableStreamError(stream, error) { | |||
| 1917 | 1917 | setPromiseHandled(stream[kIsClosedPromise].promise); | |
| 1918 | 1918 | ||
| 1919 | 1919 | const { | |
| 1920 | - reader | ||
| 1920 | + reader, | ||
| 1921 | 1921 | } = stream[kState]; | |
| 1922 | 1922 | ||
| 1923 | 1923 | if (reader === undefined) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -66,7 +66,7 @@ class CloneableDOMException extends DOMException { | |||
| 66 | 66 | code: this.code, | |
| 67 | 67 | }, | |
| 68 | 68 | deserializeInfo: | |
| 69 | - 'internal/webstreams/transfer:InternalCloneableDOMException' | ||
| 69 | + 'internal/webstreams/transfer:InternalCloneableDOMException', | ||
| 70 | 70 | }; | |
| 71 | 71 | } | |
| 72 | 72 | ||
@@ -183,7 +183,7 @@ class CrossRealmTransformWritableSink { | |||
| 183 | 183 | assert(typeof data === 'object'); | |
| 184 | 184 | const { | |
| 185 | 185 | type, | |
| 186 | - value | ||
| 186 | + value, | ||
| 187 | 187 | } = { ...data }; | |
| 188 | 188 | assert(typeof type === 'string'); | |
| 189 | 189 | switch (type) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -226,7 +226,7 @@ class TransformStream { | |||
| 226 | 226 | writable, | |
| 227 | 227 | }, | |
| 228 | 228 | deserializeInfo: | |
| 229 | - 'internal/webstreams/transformstream:TransferredTransformStream' | ||
| 229 | + 'internal/webstreams/transformstream:TransferredTransformStream', | ||
| 230 | 230 | }; | |
| 231 | 231 | } | |
| 232 | 232 | ||
@@ -398,7 +398,7 @@ function initializeTransformStream( | |||
| 398 | 398 | promise: undefined, | |
| 399 | 399 | resolve: undefined, | |
| 400 | 400 | reject: undefined, | |
| 401 | - } | ||
| 401 | + }, | ||
| 402 | 402 | }; | |
| 403 | 403 | ||
| 404 | 404 | transformStreamSetBackpressure(stream, true); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -26,7 +26,7 @@ const { | |||
| 26 | 26 | ||
| 27 | 27 | const { | |
| 28 | 28 | copyArrayBuffer, | |
| 29 | - detachArrayBuffer | ||
| 29 | + detachArrayBuffer, | ||
| 30 | 30 | } = internalBinding('buffer'); | |
| 31 | 31 | ||
| 32 | 32 | const { | |
@@ -91,7 +91,7 @@ function customInspect(depth, options, name, data) { | |||
| 91 | 91 | ||
| 92 | 92 | const opts = { | |
| 93 | 93 | ...options, | |
| 94 | - depth: options.depth == null ? null : options.depth - 1 | ||
| 94 | + depth: options.depth == null ? null : options.depth - 1, | ||
| 95 | 95 | }; | |
| 96 | 96 | ||
| 97 | 97 | return `${name} ${inspect(data, opts)}`; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -299,7 +299,7 @@ class WritableStream { | |||
| 299 | 299 | return { | |
| 300 | 300 | data: { port: this[kState].transfer.port2 }, | |
| 301 | 301 | deserializeInfo: | |
| 302 | - 'internal/webstreams/writablestream:TransferredWritableStream' | ||
| 302 | + 'internal/webstreams/writablestream:TransferredWritableStream', | ||
| 303 | 303 | }; | |
| 304 | 304 | } | |
| 305 | 305 | ||
@@ -398,7 +398,7 @@ class WritableStreamDefaultWriter { | |||
| 398 | 398 | promise: undefined, | |
| 399 | 399 | resolve: undefined, | |
| 400 | 400 | reject: undefined, | |
| 401 | - } | ||
| 401 | + }, | ||
| 402 | 402 | }; | |
| 403 | 403 | setupWritableStreamDefaultWriter(this, stream); | |
| 404 | 404 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments