aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/_all.js
diff options
context:
space:
mode:
authorSteve <hez2010@outlook.com>2022-01-30 00:16:27 +0900
committerGitHub <noreply@github.com>2022-01-29 16:16:27 +0100
commit0a3aadbe801556a9059d1db419223e4ca09ad4d0 (patch)
treeda1a13e0f14f0459d78c0c9cce17a4611c4f4eee /lib/compilers/_all.js
parent92ce5129962347ff2fdf53447cde54a693d42ff6 (diff)
downloadcompiler-explorer-0a3aadbe801556a9059d1db419223e4ca09ad4d0.tar.gz
compiler-explorer-0a3aadbe801556a9059d1db419223e4ca09ad4d0.zip
Add support for C#, F# and Visual Basic (#3168)gh-1763
Diffstat (limited to 'lib/compilers/_all.js')
-rw-r--r--lib/compilers/_all.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/compilers/_all.js b/lib/compilers/_all.js
index bc99138c8..d93272d96 100644
--- a/lib/compilers/_all.js
+++ b/lib/compilers/_all.js
@@ -36,11 +36,13 @@ export { CprocCompiler } from './cproc';
export { CrystalCompiler } from './crystal';
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 { FortranCompiler } from './fortran';
export { GCCCompiler } from './gcc';
export { GCCRSCompiler } from './gccrs';
@@ -71,12 +73,13 @@ export { SdccCompiler } from './sdcc';
export { SPIRVCompiler } from './spirv';
export { SwiftCompiler } from './swift';
export { TenDRACompiler } from './tendra';
+export { TinyCCompiler } from './tinyc';
+export { VBCompiler } from './dotnet';
export { Win32Compiler } from './win32';
export { Win32VcCompiler } from './win32-vc';
export { Win32Vc6Compiler } from './win32-vc6';
export { WineVcCompiler } from './wine-vc';
export { WslVcCompiler } from './wsl-vc';
export { ZigCompiler } from './zig';
-export { TinyCCompiler } from './tinyc';
export { ZigCC } from './zigcc';
export { ZigCXX } from './zigcxx';