diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2018-11-20 10:51:35 +1100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-20 08:46:56 -0800 |
commit | 3d03f5b0cb3c513e449f3aaa5d35c493b72f47b4 (patch) | |
tree | ce5d20849c3bc10aca0708f8d3910c8ab4cd82fd /js/deno.ts | |
parent | 3597d6859cacf0ef3ef935ad7d4e98d4df4a15ff (diff) |
Split Runner from Compiler
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts index 532357dab..fc1c099d6 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -48,3 +48,6 @@ export const args: string[] = []; import * as compiler from "./compiler"; // @internal export const _compiler = compiler; +import * as runner from "./runner"; +// @internal +export const _runner = runner; |