diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2020-01-09 01:17:44 +1100 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2020-01-08 09:17:44 -0500 |
commit | d325566a7e2d736870990835dfe076a30a1b26ab (patch) | |
tree | fed5de4826b04140922c2573bdad2e8c6fd2445e /cli/msg.rs | |
parent | cbdf9c50095b86e72a8e0e715a02f6eb327f7c53 (diff) |
Runtime Compiler API (#3442)
Also restructures the compiler TypeScript files to make them easier to
manage and eventually integrate deno_typescript fully.
Diffstat (limited to 'cli/msg.rs')
-rw-r--r-- | cli/msg.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cli/msg.rs b/cli/msg.rs index 90f953118..e1d0f07f2 100644 --- a/cli/msg.rs +++ b/cli/msg.rs @@ -97,5 +97,6 @@ pub fn enum_name_media_type(mt: MediaType) -> &'static str { #[derive(Clone, Copy, PartialEq, Debug)] pub enum CompilerRequestType { Compile = 0, - Bundle = 1, + RuntimeCompile = 1, + RuntimeTranspile = 2, } |