aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/typescript-native.ts
diff options
context:
space:
mode:
authorMatt Godbolt <matt@godbolt.org>2023-06-06 21:16:53 -0500
committerMatt Godbolt <matt@godbolt.org>2023-06-06 21:16:53 -0500
commit786a284b6afce472febc173cbc42522550f09334 (patch)
tree6ae1e8736b75061c74f7ffc0b29cff3eb2eed1a2 /lib/compilers/typescript-native.ts
parentd4f98a1abe3a8de5aee793fdd3d7f4a27279d55d (diff)
downloadcompiler-explorer-786a284b6afce472febc173cbc42522550f09334.tar.gz
compiler-explorer-786a284b6afce472febc173cbc42522550f09334.zip
Fix formatting
Diffstat (limited to 'lib/compilers/typescript-native.ts')
-rw-r--r--lib/compilers/typescript-native.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compilers/typescript-native.ts b/lib/compilers/typescript-native.ts
index ba6b9c98d..d450bcb94 100644
--- a/lib/compilers/typescript-native.ts
+++ b/lib/compilers/typescript-native.ts
@@ -108,8 +108,7 @@ export class TypeScriptNativeCompiler extends BaseCompiler {
override async generateIR(inputFilename: string, options: string[], filters: ParseFiltersAndOutputOptions) {
// These options make Clang produce an IR
let newOptions = ['--emit=llvm', inputFilename];
- if (this.tscNewOutput)
- {
+ if (this.tscNewOutput) {
newOptions = ['--emit=llvm', '-o=-', inputFilename];
}