Bartek Iwańczuk

Results 163 issues of Bartek Iwańczuk

```js // foo.js console.log("foo!"); ``` In Deno: ``` deno run --inspect-brk foo1.js Debugger listening on ws://127.0.0.1:9229/ws/f2c0a704-297c-4dc0-a0f0-9e3911327c7c Debugger session started. foo ``` In Node.js: ``` node --inspect-brk foo.js Debugger listening on...

feat
inspector
stale

It seems to be crashing on M1 with SIGSEGV :( `cargo test -p deno_core snapshot`

stale

Don't expect to land it; it's just a quick and dirty experiment. SWC is going to use `miette` in a new release, so I decided to try it out in...

stale

Closes https://github.com/denoland/deno/issues/14398

This PR changes behavior of `Deno.exit()` when `--watch` flag is passed. Instead of exiting the watcher process, it terminates JS execution but keeps file watcher alive. This is done, by...

Closes https://github.com/denoland/deno_graph/issues/140

Rewrite "create_graph", "create_code_graph" and "create_type_graph" to have fewer arguments. "CreateGraphOptions" struct was added, that has a "Default" trait implementation. ---- I find it quite hard and confusing to understand what's...