summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2018-11-20 10:51:35 +1100
committerRyan Dahl <ry@tinyclouds.org>2018-11-20 08:46:56 -0800
commit3d03f5b0cb3c513e449f3aaa5d35c493b72f47b4 (patch)
treece5d20849c3bc10aca0708f8d3910c8ab4cd82fd /js/deno.ts
parent3597d6859cacf0ef3ef935ad7d4e98d4df4a15ff (diff)
Split Runner from Compiler
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts3
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;