diff options
author | Rubén Rincón Blanco <ruben@rinconblanco.es> | 2022-08-13 01:39:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-13 01:39:41 +0200 |
commit | 16b176235a67f5b31f5657e2bf76e2e85d84d0f7 (patch) | |
tree | 7539e8e126e8d44ef4bcd74d96ea24cdd33c1afa /lib/compilers | |
parent | 33f2f28c570b9194437ed12d9b39b6b5aa718936 (diff) | |
download | compiler-explorer-16b176235a67f5b31f5657e2bf76e2e85d84d0f7.tar.gz compiler-explorer-16b176235a67f5b31f5657e2bf76e2e85d84d0f7.zip |
JBOF: Just a Bunch of Fixes (#3957)gh-3912
- Renames orphancompiler.py script to propscheck.py, the name fits better
- Fixes Go props to make them easier to maintain
- Alphabetically sorts some listings in the code
- Adds tests to the props checker script (No idea how to integrate those so it's manual for now)
- Adds 2 missing limit cases for Motd filtering
Diffstat (limited to 'lib/compilers')
-rw-r--r-- | lib/compilers/_all.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/compilers/_all.js b/lib/compilers/_all.js index 18c4f20aa..af117d291 100644 --- a/lib/compilers/_all.js +++ b/lib/compilers/_all.js @@ -1,4 +1,4 @@ -// Copyright (c) 2020, 2021, Compiler Explorer Authors +// Copyright (c) 2021, Compiler Explorer Authors // All rights reserved. // // Redistribution and use in source and binary forms, with or without @@ -25,8 +25,8 @@ export {AdaCompiler} from './ada'; export {AnalysisTool} from './analysis-tool'; export {AssemblyCompiler} from './assembly'; +export {AvrGcc6502Compiler} from './avrgcc6502'; export {BeebAsmCompiler} from './beebasm'; -export {NasmCompiler} from './nasm'; export {CarbonCompiler} from './carbon'; export {Cc65Compiler} from './cc65'; export {CircleCompiler} from './circle'; @@ -37,18 +37,19 @@ export {ClangHipCompiler} from './clang'; export {CleanCompiler} from './clean'; export {CprocCompiler} from './cproc'; export {CrystalCompiler} from './crystal'; +export {CSharpCompiler} from './dotnet'; export {DartCompiler} from './dart'; export {DefaultCompiler} from './default'; export {DMDCompiler} from './dmd'; -export {CSharpCompiler} from './dotnet'; export {EllccCompiler} from './ellcc'; export {ErlangCompiler} from './erlang'; export {EWARMCompiler} from './ewarm'; export {EWAVRCompiler} from './ewavr'; export {FakeCompiler} from './fake-for-test'; -export {FSharpCompiler} from './dotnet'; export {FlangCompiler} from './flang'; export {FortranCompiler} from './fortran'; +export {FPCCompiler} from './pascal'; +export {FSharpCompiler} from './dotnet'; export {GCCCompiler} from './gcc'; export {GCCRSCompiler} from './gccrs'; export {GolangCompiler} from './golang'; @@ -62,21 +63,21 @@ export {LDCCompiler} from './ldc'; export {LLCCompiler} from './llc'; export {LLVMmcaTool} from './llvm-mca'; export {MLIRCompiler} from './mlir'; +export {MrustcCompiler} from './mrustc'; +export {NasmCompiler} from './nasm'; export {NimCompiler} from './nim'; export {NvccCompiler} from './nvcc'; export {OCamlCompiler} from './ocaml'; export {OptCompiler} from './opt'; export {OSACATool} from './osaca'; -export {FPCCompiler} from './pascal'; export {PascalWinCompiler} from './pascal-win'; export {PonyCompiler} from './pony'; export {PPCICompiler} from './ppci'; export {PtxAssembler} from './ptxas'; export {PythonCompiler} from './python'; export {RubyCompiler} from './ruby'; -export {RustCompiler} from './rust'; export {RustcCgGCCCompiler} from './rustc-cg-gcc'; -export {MrustcCompiler} from './mrustc'; +export {RustCompiler} from './rust'; export {ScalaCompiler} from './scala'; export {SdccCompiler} from './sdcc'; export {SolidityCompiler} from './solidity'; @@ -84,16 +85,15 @@ export {SPIRVCompiler} from './spirv'; export {SwiftCompiler} from './swift'; export {TenDRACompiler} from './tendra'; export {TinyCCompiler} from './tinyc'; +export {ToitCompiler} from './toit'; +export {TurboCCompiler} from './turboc'; export {TypeScriptNativeCompiler} from './typescript-native'; export {VBCompiler} from './dotnet'; export {Win32Compiler} from './win32'; -export {Win32VcCompiler} from './win32-vc'; export {Win32Vc6Compiler} from './win32-vc6'; +export {Win32VcCompiler} from './win32-vc'; export {WineVcCompiler} from './wine-vc'; export {WslVcCompiler} from './wsl-vc'; -export {ZigCompiler} from './zig'; export {ZigCC} from './zigcc'; +export {ZigCompiler} from './zig'; export {ZigCXX} from './zigcxx'; -export {TurboCCompiler} from './turboc'; -export {AvrGcc6502Compiler} from './avrgcc6502'; -export {ToitCompiler} from './toit'; |