Age | Commit message (Collapse) | Author |
|
|
|
Original: https://github.com/denoland/deno_std/commit/9f1de43cc47b0bee4d7d04a1b3ebc238333575bc
|
|
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/c5e6e015b5be19027f60c19ca86283d12f9258f3
|
|
Original: https://github.com/denoland/deno_std/commit/41312ad39fe77cee7dd2cc4b48308eebb45f870a
|
|
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/c42686dc36ba888137fe734c59318466f41d7dfa
|
|
Adds a new integration test for syntax error.
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/3656ab5b9937cc3fbdf1c9e0d1414fbf05e78240
|
|
Original: https://github.com/denoland/deno_std/commit/0e00fe9cd361165d28beb117cdf103ff8f9d3d8b
|
|
Original: https://github.com/denoland/deno_std/commit/92bbca8166d6566011aff0ef467a83433747a937
|
|
Original: https://github.com/denoland/deno_std/commit/5be16ba5992b34a64d307779350b88b5cacbfa23
|
|
|
|
|
|
|
|
|
|
Fixes #1490
|
|
* Native ES modules
This is a major refactor of internal compiler.
Before: JS and TS both were sent through the typescript compiler where
their imports were parsed and handled. Both compiled to AMD JS and
finally sent to V8
Now: JS is sent directly into V8. TS is sent through the typescript
compiler, but tsc generates ES modules now instead of AMD. This
generated JS is then dumped into V8.
This should much faster for pure JS code. It may improve TS compilation
speed.
In the future this allows us to separate TS out of the runtime heap and
into its own dedicated snapshot. This will result in a smaller runtime
heap, and thus should be faster.
Some tests were unfortunately disabled to ease landing this patch:
1. compiler_tests.ts which I intend to bring back in later commits.
2. Some text_encoding_test.ts tests which made the file invalid utf8.
See PR for a discussion.
Also worth noting that this is necessary to support WASM
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/41a2d218264b2f9217bf793893aff5dadd2c4ca9
|
|
This adds the ability to spawn additional Isolates from Rust and send
and receive messages from them. This is preliminary work to support
running the typescript compiler in a separate isolate and thus support
native ES modules. Ref #975.
|
|
When we called js_filename.as_ptr() without using CString it wasn't
necessarally null terminated, which was creating spurious failures.
|
|
Original: https://github.com/denoland/deno_std/commit/72b2e20f9da1d431ba9cac3247ee38ee82d5d8f4
|
|
(#1466)
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/a0b5aec82397bf76d3e8348194536c2596292e65
|
|
|
|
This implementation of groupCollapsed is intentionally different
from the spec defined by whatwg. See the conversation in #1355
and #1363.
|
|
This is needed to support builtin modules like
import { open } from "deno"
|
|
Original: https://github.com/denoland/deno_std/commit/2606e295c77fb9d5796d527ed15f2dab3de1a696
|
|
Original: https://github.com/denoland/deno_std/commit/297cf0975eca194a677e6fadd7d753d62eb453c3
|
|
This reverts commit 3d03f5b0cb3c513e449f3aaa5d35c493b72f47b4.
|
|
|
|
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/4e12c2b4d2b8e16deb345c993611b56fc8497fd8
|
|
Original: https://github.com/denoland/deno_std/commit/8221924d9a814eb8d644b2f47e57687134341cc8
|
|
Fixes denoland/deno_std#34
Original: https://github.com/denoland/deno_std/commit/2ece847a82bd06eb8810950b3064070135d2d94d
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/e504e545249c12b64b0e7e0ffe0706170a884b70
|
|
Original: https://github.com/denoland/deno_std/commit/9d3d90560c92be4f080f984209a7ffd5a4bbb920
|
|
Original: https://github.com/denoland/deno_std/commit/6754d468d8806e467edc3690fb02c1a587d02a26
|
|
Original: https://github.com/denoland/deno_std/commit/2916791dfb14bf486185eca6c7859b49c1c4c052
|
|
Original: https://github.com/denoland/deno_std/commit/63d4f6d8282cda659a2e238e96df8a43df4c8b4b
|