diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2019-01-29 11:41:28 +1000 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-28 20:41:28 -0500 |
commit | ee9c627cc5f92898d104e9359059b57354c9f83c (patch) | |
tree | 397428aa26133100e78565755a8b8db169c12131 /js/deno.ts | |
parent | f7c0f4944352f5bd2bb04d6c64e6259357d3827a (diff) |
Split out compiler snapshot (#1566)
Speeds up startup time, reduces runtime heap size.
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/js/deno.ts b/js/deno.ts index 24ef43b28..1cc0a33d1 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -1,7 +1,6 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. // Public deno module. -/// <amd-module name="deno"/> export { pid, env, exit } from "./os"; export { chdir, cwd } from "./dir"; export { @@ -61,8 +60,3 @@ export { Console, stringifyArgs } from "./console"; export { DomIterableMixin } from "./mixins/dom_iterable"; // TODO Don't expose deferred. export { deferred } from "./util"; - -// Provide the compiler API in an obfuscated way -import * as compiler from "./compiler"; -// @internal -export const _compiler = compiler; |