diff options
Diffstat (limited to 'js/runtime.ts')
-rw-r--r-- | js/runtime.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/runtime.ts b/js/runtime.ts index 1cd1bdad1..9570dda1c 100644 --- a/js/runtime.ts +++ b/js/runtime.ts @@ -149,7 +149,7 @@ export function resolveModule( util.assert(moduleSpecifier != null && moduleSpecifier.length > 0); // We ask golang to sourceCodeFetch. It will load the sourceCode and if // there is any outputCode cached, it will return that as well. - const fetchResponse = os.codeFetch(moduleSpecifier, containingFile); + const fetchResponse = os.codeFetch(moduleSpecifier, containingFile); const { filename, sourceCode, outputCode } = fetchResponse; if (sourceCode.length === 0) { return null; |