Age | Commit message (Collapse) | Author |
|
Move typescript files to net/
Original: https://github.com/denoland/deno_std/commit/99e276eb89fbe0003bfa8d9e7b907ff3ef19ee47
|
|
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/6f2811c27594b10dc7c6064eaa82cd0534b7a018
|
|
Original: https://github.com/denoland/deno_std/commit/abeb19890e5d6a0cd3461c4aefc920006ef284bd
|
|
Original: https://github.com/denoland/deno_std/commit/5abec6efc5028bb281c29f5df40c0d87a4b8ebeb
|
|
|
|
Unfortunately V8 has a debug-only assert that checks
that a SnapshotCreator actually created a snapshot:
https://github.com/denoland/deno_third_party/blob/7d8c9aa769778140e1619f545e706bf34545509e/v8/src/api.cc#L571
This was not being triggered in Linux & Mac debug builds
because we were using the prebuilt release V8 build.
It was being triggered in Windows debug build because there is
a prebuilt v8_debug.lib. However the Windows error went unnoticed
because we only run release builds in CI.
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/269665873a9219423085418d605b8af8ac2565dc
|
|
Original: https://github.com/denoland/deno_std/commit/20714fe47a3a2b2bbb8a3b8553d0e6f4ad1cb76f
|
|
- console.assert should not throw error (#1335)
- Support more modes in deno.open (#1282, #1336)
- Simplify code fetch logic (#1322)
- readDir entry mode (#1326)
- Use stderr for exceptions (#1303)
- console.log formatting improvements (#1327, #1299)
- Expose TooLarge error code for buffers (#1298)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fix denoland/deno_std#19
Original: https://github.com/denoland/deno_std/commit/d9ab8eb0033ae73551e4979598293c5bd41b417d
|
|
Original: https://github.com/denoland/deno_std/commit/dbff42070bf8a94bb6a2af3d63ebffc7e77ab56b
|
|
|
|
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/108127178b7cfd881ea18fabc92d0ee9bf72fd20
|
|
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/b78f4e9fbd477b026f1a309c64f4f8f75cd4d5d6
|
|
This was introduced because Tokio would swallow panics. This is still
the case, but this panic handler causes more problems than it solves.
It requires people to know how to use debuggers to inspect stacktraces.
TODO:
- Fix Tokio to not swallow errors.
- Be vigilant in the intrim to not introduce broken tests due to this
unfortunate "feature" of tokio.
|
|
|
|
This is more optimial and this fixes a problem where occasionally
remove_and_symlink will error with:
gen/compiler_bundle/main.js --sourcemapFile /Users/rld/src/deno --silent
Traceback (most recent call last):
File "../../tools/run_node.py", line 18, in <module>
util.remove_and_symlink(target_rel, "node_modules", True)
File "/Users/rld/src/deno/tools/util.py", line 103, in remove_and_symlink
symlink(target, name, target_is_dir)
File "/Users/rld/src/deno/tools/util.py", line 141, in symlink
os.symlink(target, name)
OSError: [Errno 17] File exists
|
|
|
|
|
|
This bring it inline with terminology used in V8
See ResolveCallback in v8.h
|
|
Continuation of the work done in c113df.
|
|
Original: https://github.com/denoland/deno_std/commit/f1f1f39cd3618824534d16b2588e97ecbc6c2681
|
|
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/7cd4d9f4eaa4b1d167306b9000af30421319600a
|
|
Original: https://github.com/denoland/deno_std/commit/721306e7269301bde5dd192f941e0c92a4bd162e
|
|
In collaboration with @yushimatenjin
|
|
Original: https://github.com/denoland/deno_std/commit/c8e5d98900884f583d91c7c2526fca8bbc50be1b
|