aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/_all.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/_all.js')
-rw-r--r--lib/compilers/_all.js76
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';