Divy Srivastava
Divy Srivastava
``` $ dd if=/dev/zero bs=65536 count=500000 | ./stdio # C baseline 500000+0 records in 500000+0 records out 32768000000 bytes transferred in 4.126087 secs (7941664827 bytes/sec) c: size 32768000000 reads 500000...
This PR implements the NAPI for loading native modules into Deno. ## Feature tracking - [x] Environment life cycle APIs - [x] `napi_set_instance_data` - [x] `napi_get_instance_data` - [x] Basic Node-API...
To be on par with WebKit and Blink implementations. - [ ] https://github.com/denoland/deno/pull/15664 - [x] https://github.com/denoland/deno/pull/15663 - [x] https://github.com/servo/rust-url/pull/761 - [x] https://github.com/servo/rust-url/pull/788 - [x] https://github.com/servo/rust-url/pull/789 - [x] https://github.com/denoland/deno/pull/15800 - [x]...
serde_v8 is great. we use it for passing arguments and returning structures from Rust... but maybe we use it too much: - there is an obvious overhead serializing object keys...
### Version 0.1.6 ### Platform Darwin mini.local 21.4.0 Darwin Kernel Version 21.4.0: Fri Mar 18 00:47:26 PDT 2022; root:xnu-8020.101.4~15/RELEASE_ARM64_T8101 arm64 ### What steps will reproduce the bug? ```js Bun.serve({ fetch()...
```ts // @noImplicitAny: true function fnNumber(this: void): number { return 90; } new fnNumber(); // Error ``` ``` error[TS7009]: TargetLacksConstructSignature { span: Span { lo: BytePos( 80, ), hi: BytePos(...
Handle private name field access in derived class. ```ts class Base { #prop: number = 123; static method(x: Derived) { x.#prop } } class Derived extends Base { static method(x:...
Adds TS1359 validation for function parameter identifiers. ``` error[TS1359]: ExpectedIdentifierReservedKeyword { span: Span { lo: BytePos( 21, ), hi: BytePos( 26, ), ctxt: #0, }, } --> a.ts:1:20 | 1...