mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
0ceb554343
* 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 |
||
---|---|---|
.. | ||
subdir2 | ||
auto_print_hello.ts | ||
config.json | ||
form_urlencoded.txt | ||
mismatch_ext.ts | ||
mod1.ts | ||
mod2.ts | ||
mod3.js | ||
mod4.js | ||
mt_application_ecmascript.j2.js | ||
mt_application_x_javascript.j4.js | ||
mt_application_x_typescript.t4.ts | ||
mt_javascript.js | ||
mt_text_ecmascript.j3.js | ||
mt_text_javascript.j1.js | ||
mt_text_typescript.t1.ts | ||
mt_video_mp2t.t3.ts | ||
mt_video_vdn.t2.ts | ||
no_ext | ||
print_hello.ts | ||
unknown_ext.deno |