diff options
author | Austin Morton <apmorton@users.noreply.github.com> | 2020-09-26 16:59:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-26 16:59:26 -0400 |
commit | 044dcfbf8885d0115e64cf75f74a0f40f54e2370 (patch) | |
tree | 1dcc3e27139600d8e85004dc2a840bb420ccc835 /lib/compilers/_all.js | |
parent | bac07fea6d2d4ed5fb7070c51e4cf3e56e3c155a (diff) | |
download | compiler-explorer-044dcfbf8885d0115e64cf75f74a0f40f54e2370.tar.gz compiler-explorer-044dcfbf8885d0115e64cf75f74a0f40f54e2370.zip |
Use ES6 Modules (#2132)
Diffstat (limited to 'lib/compilers/_all.js')
-rw-r--r-- | lib/compilers/_all.js | 76 |
1 files changed, 37 insertions, 39 deletions
diff --git a/lib/compilers/_all.js b/lib/compilers/_all.js index fe935c331..07e0afa8f 100644 --- a/lib/compilers/_all.js +++ b/lib/compilers/_all.js @@ -1,39 +1,37 @@ -module.exports = { - AdaCompiler: require('./ada'), - AnalysisTool: require('./analysis-tool'), - AssemblyCompiler: require('./assembly'), - Cc65Compiler: require('./cc65'), - ClangCompiler: require('./clang'), - CleanCompiler: require('./clean'), - DefaultCompiler: require('./default'), - DMDCompiler: require('./dmd'), - EllccCompiler: require('./ellcc'), - EWAVRCompiler: require('./ewavr'), - FakeCompiler: require('./fake-for-test'), - FortranCompiler: require('./fortran'), - GCCCompiler: require('./gcc'), - GolangCompiler: require('./golang'), - HaskellCompiler: require('./haskell'), - ISPCCompiler: require('./ispc'), - JavaCompiler: require('./java'), - LDCCompiler: require('./ldc'), - LLCCompiler: require('./llc'), - LLVMmcaTool: require('./llvm-mca'), - NimCompiler: require('./nim'), - NvccCompiler: require('./nvcc'), - OCamlCompiler: require('./ocaml'), - OptCompiler: require('./opt'), - FPCCompiler: require('./pascal'), - PPCICompiler: require('./ppci'), - PtxAssembler: require('./ptxas'), - PythonCompiler: require('./python'), - RustCompiler: require('./rust'), - SdccCompiler: require('./sdcc'), - SwiftCompiler: require('./swift'), - TenDRACompiler: require('./tendra'), - Win32Compiler: require('./win32'), - Win32VcCompiler: require('./win32-vc'), - WineVcCompiler: require('./wine-vc'), - WslVcCompiler: require('./wsl-vc'), - ZigCompiler: require('./zig'), -}; +export { AdaCompiler } from './ada'; +export { AnalysisTool } from './analysis-tool'; +export { AssemblyCompiler } from './assembly'; +export { Cc65Compiler } from './cc65'; +export { ClangCompiler } from './clang'; +export { CleanCompiler } from './clean'; +export { DefaultCompiler } from './default'; +export { DMDCompiler } from './dmd'; +export { EllccCompiler } from './ellcc'; +export { EWAVRCompiler } from './ewavr'; +export { FakeCompiler } from './fake-for-test'; +export { FortranCompiler } from './fortran'; +export { GCCCompiler } from './gcc'; +export { GolangCompiler } from './golang'; +export { HaskellCompiler } from './haskell'; +export { ISPCCompiler } from './ispc'; +export { JavaCompiler } from './java'; +export { LDCCompiler } from './ldc'; +export { LLCCompiler } from './llc'; +export { LLVMmcaTool } from './llvm-mca'; +export { NimCompiler } from './nim'; +export { NvccCompiler } from './nvcc'; +export { OCamlCompiler } from './ocaml'; +export { OptCompiler } from './opt'; +export { FPCCompiler } from './pascal'; +export { PPCICompiler } from './ppci'; +export { PtxAssembler } from './ptxas'; +export { PythonCompiler } from './python'; +export { RustCompiler } from './rust'; +export { SdccCompiler } from './sdcc'; +export { SwiftCompiler } from './swift'; +export { TenDRACompiler } from './tendra'; +export { Win32Compiler } from './win32'; +export { Win32VcCompiler } from './win32-vc'; +export { WineVcCompiler } from './wine-vc'; +export { WslVcCompiler } from './wsl-vc'; +export { ZigCompiler } from './zig'; |