diff options
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; |