Matt Mastracci

Results 100 issues of Matt Mastracci

The static initialization of variables is a holdover from pre-`const` Rust. We should translate them to a form compatible with a third-party library, for example: https://crates.io/crates/static_init

1.0

This is a tracking bug to cover everything we need to do for a 1.0 release: - [ ] #159: make ctor/dtor unsafe, always - [ ] #161: Construction of...

1.0

This library requires you to know what you're doing, and making ctor/dtor unsafe is the right way to go. Most users are probably already using `unsafe` anyways, as this is...

1.0

When I specify --woff given two option declarations `--woff` and `--woff`, I get an error saying that `--woff is specified ambiguously 2 times` One-liner repro (after npm install docopt): ```...

I've tested the following change locally as it gives access to updated versions of `libnice` etc: ``` diff --git a/Dockerfile b/Dockerfile index 1dc36ef..fc038e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7...

`dax` should implement a new feature that enables partial window scrolling in the terminal, similar to the behavior seen in the Docker build process. The current behavior of dax when...

enhancement

Appears to have broken in https://github.com/denoland/deno/pull/20217. ```typescript Deno.serve({ port: 8001 }, (req) => { return new Response("Hello world"); }); const proxyUrl = "http://localhost:8001/"; async function handleHttp(conn: Deno.Conn) { for await...

bug
ext/fetch
ext/http

DO NOT MERGE Re-implements `Deno.serveHttp` on top of `Deno.serve`. Breaking changes: - `close` on `HttpConn` is now `async` requiring the caller to `await`. We need this because we cannot guarantee...

- Updates to V8 12.1.285.27 https://github.com/denoland/rusty_v8/pull/1383 - Swaps Box for Rc for `source_map_getter`

In #22355, we restored a websocketstream_test that was being ignored. The op sanitizer complains about quite a few methods in here, suggesting that we're leaking ops or the code is...

bug
ext/websocket