| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | util: add more predefined color codes to inspect.colors | Ruben Bridgewater | 2020-02-06 | 3 | -15/+166 |
* | util: improve inspect's customInspect performance | Ruben Bridgewater | 2020-02-06 | 2 | -9/+23 |
* | repl: use better uncaught exceptions indicator | Ruben Bridgewater | 2020-02-06 | 10 | -87/+90 |
* | build: remove (almost) unused macros/constants | bcoe | 2020-02-06 | 8 | -208/+13 |
* | lib: delay access to CLI option to pre-execution | Joyee Cheung | 2020-02-06 | 4 | -8/+17 |
* | test: improve wasi test coverage | Rich Trott | 2020-02-06 | 1 | -0/+22 |
* | test: simplify tmpdir import in wasi tests | Rich Trott | 2020-02-06 | 2 | -2/+2 |
* | worker: add argv constructor option | legendecas | 2020-02-06 | 4 | -3/+81 |
* | http2: implement capture rection for 'request' and 'stream' events | Matteo Collina | 2020-02-06 | 2 | -0/+197 |
* | tls: implement capture rejections for 'secureConnection' event | Matteo Collina | 2020-02-06 | 2 | -0/+48 |
* | net: implement capture rejections for 'connection' event | Matteo Collina | 2020-02-06 | 3 | -2/+44 |
* | http: add captureRejection support to OutgoingMessage | Matteo Collina | 2020-02-06 | 2 | -0/+95 |
* | http: implement capture rejections for 'request' event | Matteo Collina | 2020-02-06 | 2 | -0/+129 |
* | stream: add support for captureRejection option | Matteo Collina | 2020-02-06 | 4 | -4/+69 |
* | events: add captureRejection option | Matteo Collina | 2020-02-06 | 3 | -6/+530 |
* | build: do not build mksnapshot and mkcodecache for --shared | Joyee Cheung | 2020-02-06 | 1 | -2/+3 |
* | build: add --without-node-code-cache configure option | Joyee Cheung | 2020-02-06 | 3 | -8/+16 |
* | wasi: introduce initial WASI support | cjihrig | 2020-02-06 | 84 | -4/+12753 |
* | module: reduce circular dependency of internal/modules/cjs/loader | Joyee Cheung | 2020-02-06 | 25 | -109/+158 |
* | lib: replace Map global by the primordials | Sebastien Ahkrin | 2020-02-06 | 23 | -1/+28 |
* | lib: replace use of Error with primordials | Sebastien Ahkrin | 2020-02-06 | 29 | -0/+34 |
* | lib: replace Set global by the primordials | Sebastien Ahkrin | 2020-02-06 | 13 | -0/+17 |
* | lib: replace WeakSet global by the primordials | Sebastien Ahkrin | 2020-02-06 | 1 | -0/+2 |
* | lib: replace WeakMap global by the primordials | Sebastien Ahkrin | 2020-02-06 | 7 | -0/+9 |
* | lib: replace Set.prototype with SetPrototype primordial | Sebastien Ahkrin | 2020-02-06 | 1 | -1/+2 |
* | lib: replace Symbol.species by SymbolSpecies | Sebastien Ahkrin | 2020-02-06 | 1 | -2/+2 |
* | lib: replace Symbol.hasInstance by SymbolHasInstance | Sebastien Ahkrin | 2020-02-06 | 2 | -4/+6 |
* | lib: replace Symbol.asyncIterator by SymbolAsyncIterator | Sebastien Ahkrin | 2020-02-06 | 4 | -8/+10 |
* | lib: enforce use of Promise from primordials | Michaël Zasso | 2020-02-06 | 15 | -8/+59 |
* | v8: use of TypedArray constructors from primordials | Sebastien Ahkrin | 2020-02-06 | 1 | -0/+10 |
* | lib: add TypedArray constructors to primordials | Sebastien Ahkrin | 2020-02-06 | 1 | -0/+11 |
* | repl: fix autocomplete when useGlobal is false | Michaël Zasso | 2020-02-06 | 1 | -4/+13 |
* | lib: replace Symbol.toPrimitive to SymbolToPrimitive primordials | Sebastien Ahkrin | 2020-02-06 | 2 | -14/+15 |
* | lib: update Symbol.toStringTag by SymbolToStringTag primordial | Sebastien Ahkrin | 2020-02-06 | 2 | -5/+7 |
* | lib: enforce use of BigInt from primordials | Michaël Zasso | 2020-02-06 | 3 | -0/+4 |
* | lib: replace Symbol.iterator by SymbolIterator | Sebastien Ahkrin | 2020-02-06 | 3 | -9/+11 |
* | lib: replace every Symbol.for by SymbolFor primordials | Sebastien Ahkrin | 2020-02-06 | 3 | -3/+6 |
* | lib: replace Symbol global by the primordials Symbol | Sebastien Ahkrin | 2020-02-06 | 57 | -2/+88 |
* | lib: enforce use of primordial Number | Sebastien Ahkrin | 2020-02-06 | 8 | -1/+10 |
* | lib: use static Number properties from primordials | Michaël Zasso | 2020-02-06 | 27 | -47/+84 |
* | lib: enforce use of Boolean from primordials | Michaël Zasso | 2020-02-06 | 9 | -0/+20 |
* | lib: replace Date.now function by primordial DateNow | Tchoupinax | 2020-02-06 | 2 | -7/+9 |
* | lib: replace ArrayBuffer.isView by primordial ArrayBuffer | Vincent Dhennin | 2020-02-06 | 1 | -1/+2 |
* | lib: enforce use of Array from primordials | Michaël Zasso | 2020-02-06 | 48 | -69/+140 |
* | lib: flatten access to primordials | Michaël Zasso | 2020-02-06 | 117 | -932/+1300 |
* | test: use arrow functions in addons tests | garygsc | 2020-02-06 | 13 | -23/+23 |
* | stream: use more accurate end-of-stream writable and readable detection | Stewart Addison | 2020-02-06 | 2 | -2/+65 |
* | Revert "test: update postmortem metadata test for V8 7.7" | Matheus Marchini | 2020-02-06 | 1 | -4/+4 |
* | Revert "src: update v8abbr.h for V8 7.7" | Matheus Marchini | 2020-02-06 | 1 | -2/+2 |
* | deps: V8: cherry-pick b38dfaf3a633 | Matheus Marchini | 2020-02-06 | 2 | -10/+6 |