aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/typescript-native.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/typescript-native.ts')
-rw-r--r--lib/compilers/typescript-native.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compilers/typescript-native.ts b/lib/compilers/typescript-native.ts
index 25f6749ae..95e687b05 100644
--- a/lib/compilers/typescript-native.ts
+++ b/lib/compilers/typescript-native.ts
@@ -69,7 +69,7 @@ export class TypeScriptNativeCompiler extends BaseCompiler {
compiler: string,
options: string[],
inputFilename: string,
- execOptions: ExecutionOptions
+ execOptions: ExecutionOptions,
): Promise<CompilationResult> {
// These options make Clang produce an IR
const newOptions = ['--emit=mlir-llvm', inputFilename];
@@ -82,7 +82,7 @@ export class TypeScriptNativeCompiler extends BaseCompiler {
this.tscJit,
newOptions,
this.filename(inputFilename),
- execOptions
+ execOptions,
);
if (output.code !== 0) {
return {
@@ -116,7 +116,7 @@ export class TypeScriptNativeCompiler extends BaseCompiler {
this.tscJit,
newOptions,
this.filename(inputFilename),
- execOptions
+ execOptions,
);
if (output.code !== 0) {
return [{text: 'Failed to run compiler to get IR code'}];