From e435c2be158ce8657dbff0664b6db222fe4e586c Mon Sep 17 00:00:00 2001 From: crowlKats Date: Fri, 13 Mar 2020 10:22:22 +0100 Subject: Remove doc strings from cli/js TS files (#4329) Co-authored-by: Ryan Dahl --- cli/js/compiler.ts | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'cli/js/compiler.ts') diff --git a/cli/js/compiler.ts b/cli/js/compiler.ts index ed156ef0a..1dddd984c 100644 --- a/cli/js/compiler.ts +++ b/cli/js/compiler.ts @@ -70,13 +70,11 @@ interface CompilerRequestRuntimeTranspile { options?: string; } -/** The format of the work message payload coming from the privileged side */ type CompilerRequest = | CompilerRequestCompile | CompilerRequestRuntimeCompile | CompilerRequestRuntimeTranspile; -/** The format of the result sent back when doing a compilation. */ interface CompileResult { emitSkipped: boolean; diagnostics?: Diagnostic; @@ -89,8 +87,6 @@ type RuntimeCompileResult = [ type RuntimeBundleResult = [undefined | DiagnosticItem[], string]; -/** `Compile` are requests from the internals of Deno; eg. used when - * the `run` or `bundle` subcommand is used. */ async function compile( request: CompilerRequestCompile ): Promise { @@ -186,14 +182,6 @@ async function compile( return result; } -/**`RuntimeCompile` are requests from a runtime user; it can be both - * "compile" and "bundle". - * - * The process is similar to a request from the privileged - * side, but unline `compile`, `runtimeCompile` allows to specify - * additional file mappings which can be used instead of relying - * on Deno defaults. - */ async function runtimeCompile( request: CompilerRequestRuntimeCompile ): Promise { -- cgit v1.2.3