Guilherme Bernal
Guilherme Bernal
How does this work if the field itself is nullable and you want to set it to null?
I like it! Trick parts: 1. Ensure all non-nullable properties shows up somewhere. 2. Ensure no argument is repeated (`{post}` somewhere and `{post.author}` somewhere else) 3. Property of a property?...
Some points for consideration: - The API is named `Deno.core.setPromiseHook`, but it actually adds a new promise hook and could be better named as `Deno.core.addPromiseHook`. I went for keeping the...
This is intended as an internal low-level API on top of which a proper public API can be later constructed. Node.js has the `async_hooks` API that is somewhat akin to...
Done! This is now rebased on top of the current `main` and the test is properly commented and explained. Please check again.
When a promise first begins to resolve it will also trigger the creation of the promise related to the `then` block of other promises anywhere in the code that are...
The test failure seems unrelated. Web tests about WebSocket. Should I do something?
I believe this would be an equivalent implementation for Deno: ```ts import { Context, ROOT_CONTEXT } from '@opentelemetry/api'; import { AbstractAsyncHooksContextManager } from './AbstractAsyncHooksContextManager'; interface HookCallbacks { init: (promise: Promise)...
> > Note: We currently don't close IOs on finalize. I think we should > > I don't think I agree... Code that accidentally mostly works is worse than never...
Updates: This currently exposes the same primitives as LibEvent (resume, timeout, wait_readable, and wait_writeable) through almost the same interface as the original `Crystal::EventLoop`. There are no changes specifics to any...