diff options
author | Matt Godbolt <matt@godbolt.org> | 2023-06-06 21:16:53 -0500 |
---|---|---|
committer | Matt Godbolt <matt@godbolt.org> | 2023-06-06 21:16:53 -0500 |
commit | 786a284b6afce472febc173cbc42522550f09334 (patch) | |
tree | 6ae1e8736b75061c74f7ffc0b29cff3eb2eed1a2 /lib/compilers/typescript-native.ts | |
parent | d4f98a1abe3a8de5aee793fdd3d7f4a27279d55d (diff) | |
download | compiler-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.ts | 3 |
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]; } |