Divy Srivastava

Results 185 issues of Divy Srivastava

WASM bindings to Servo's browser-grade css parser.

``` $> otool -L target/release/deno target/release/deno: /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1336.61.1) /usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current version 228.0.0) /usr/lib/libiconv.2.dylib (compatibility version 7.0.0, current version 7.0.0) $> otool -L...

Ref #22669 ``` cargo build \ -p deno \ --bin=denort \ --no-default-features \ --features="webgpu" ```

compile

Incremented on `make_cppgc_object` and decremented on `drop`

Introducing op2++ (a.k.a `op2` for object methods). op2++ is to op2 as C++ is to C. This patch introduces a small extension on top of the existing op2 codegen infrastructure...

This should speed up `make_cppgc_object` a lot.

This is an unused feature in op1 which I planned to use for fast WASI calls. Implementation: https://github.com/denoland/deno/compare/main...littledivy:deno:fastwasi ```rust #[op(wasm)] fn op_wasm(state: &mut OpState, memory: Option) { let memory =...

ops