aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/bindings/JSBufferList.cpp (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-01-12set remaining indexes (#1785)Gravatar Dylan Conway 1-6/+14
2023-01-120 initialize remaining indexes in array (#1783)Gravatar Dylan Conway 1-0/+2
* 0 initialize remaining indexes in array * switch to memset
2023-01-08Revert "lazily create buffer/string slices (#1735)"Gravatar Jarred Sumner 1-95/+27
This reverts commit e2ed31b7e79d1cb4fca492de3be0324afc9fd3a1.
2023-01-05lazily create buffer/string slices (#1735)Gravatar Alex Lam S.L 1-27/+95
2023-01-04implement `expect().toThrow()` (#1727)Gravatar Alex Lam S.L 1-25/+33
- fix bugs in `JSBufferList` - add tests
2023-01-04buffer list clean-ups (#1721)Gravatar Alex Lam S.L 1-37/+68
2023-01-0410x faster `new Buffer` (#1717)Gravatar Jarred Sumner 1-11/+8
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2023-01-03[streams] speed up `Readable` in some cases (#1708)Gravatar Alex Lam S.L 1-13/+26
If `encoding` is set, no `Buffer`s would be exposed thus `Uint8Array` can be used directly. - fix data corruption in `BufferList.concat()` - fix segfaults in `BufferList.join()`
2023-01-03Fix crash in BufferListGravatar Jarred Sumner 1-2/+2
2022-11-25Upgrade WebKitGravatar Jarred Sumner 1-9/+10
2022-09-09Fix segfault due to GC and some more helper functions (#1221)Gravatar Zilin Zhu 1-0/+11
* Fix segfault due to GC and some more helper functions * fix upon reviews * add visitChildren
2022-09-06Add native ReadableState (#1210)Gravatar Zilin Zhu 1-34/+22
* use functionSpace for JSStringDecoderConstructor and fix console.log on prototype * Add native ReadableState * move kPaused to class property
2022-09-01Add native StringDecoder (#1188)Gravatar Zilin Zhu 1-1/+1
* Add native StringDecoder * fix upon reviews * add Constructor and use LazyClassStructure
2022-08-27Update WebKit (#1165)Gravatar Jarred Sumner 1-12/+12
* Update WebKit * Fix `DataView` and non-8 bit sized typed arrays with TextDecoder * New WebKit Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
2022-08-25Add native BufferList (#1146)Gravatar Zilin Zhu 1-0/+388
* add simple methods * add native BufferList * use RopeBuilder * use Deque