| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -214,15 +214,7 @@ IncomingMessage.prototype.setTimeout = function setTimeout(msecs, callback) { | |||
| 214 | 214 | return this; | |
| 215 | 215 | }; | |
| 216 | 216 | ||
| 217 | - // Argument n cannot be factored out due to the overhead of | ||
| 218 | - // argument adaptor frame creation inside V8 in case that number of actual | ||
| 219 | - // arguments is different from expected arguments. | ||
| 220 | - // Ref: https://bugs.chromium.org/p/v8/issues/detail?id=10201 | ||
| 221 | - // NOTE: Argument adapt frame issue might be solved in V8 engine v8.9. | ||
| 222 | - // Refactoring `n` out might be possible when V8 is upgraded to that | ||
| 223 | - // version. | ||
| 224 | - // Ref: https://v8.dev/blog/v8-release-89 | ||
| 225 | - IncomingMessage.prototype._read = function _read(n) { | ||
| 217 | + IncomingMessage.prototype._read = function _read() { | ||
| 226 | 218 | if (!this._consuming) { | |
| 227 | 219 | this._readableState.readingMore = false; | |
| 228 | 220 | this._consuming = true; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments