Chengzhong Wu
Chengzhong Wu
It might be useful if the scripts could be ran in verbose mode. In which mode each command would be printed before execute. ```Makefile echo: echo foo ``` Run `bake...
With the issue of #19, I accidentally ran into an unexpected recursive bake invocation like: ```Makefile foo: bake bar bar: echo bar ``` And since shell would spawn a new...
```Makefile foo: echo foo bar: echo bar ``` Run `bake foo` with above Bakefile: ``` + Executing foo: | foo | bar | foo + Done. ```
In Makefile we could substitute a command with an variable, and running with alternatives: `make CC=clang++ test`: ```Makefile CC = g++ test: $(CC) foo.cc ``` Though this is related to...
In the README, it is said that ADT is expected to be similar to the tagged union type in TypeScript. However, the tagged union type is just plain objects in...
The tag is now renamed as "node-api".
To distinguish per-context values from the `node::Environment`, split those values to a new `node::Realm` structure and consolidate bootstrapping methods with it. This allows creating multiple realms in a `node::Environment`. There...
Generalize the finalizer's second pass callback to make it cancellable and simplify the code around the second pass callback. With this change, it is determined that `Reference::Finalize`/`RefBase::Finalize` are called once,...
### What is the problem this feature will solve? [ShadowRealm](https://github.com/tc39/proposal-shadowrealm) is a TC39 stage 3 proposal that introduces a new built-in to provide a distinct global environment, with its own...
`uv_cpu_info()` on Linux: 1. First consults `/proc/stat` to get the number of online CPUs, then 2. Reads the CPU info from `/proc/cpuinfo`, then 3. Reads idle/irq/nice/user/sys from `/proc/stat` There is...