diff options
author | Timothy Moores <info@tmoor.es> | 2021-11-21 13:22:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-21 14:22:04 +0100 |
commit | 82772f4bbbbfbc0462cf4f29ec80b0036c41d9e6 (patch) | |
tree | b126322eb0a3ad3dd2b624ec335ee419933da34a /lib/compilers/_all.js | |
parent | 177fee0739be0765ff89ee5d3f1d135e62906883 (diff) | |
download | compiler-explorer-82772f4bbbbfbc0462cf4f29ec80b0036c41d9e6.tar.gz compiler-explorer-82772f4bbbbfbc0462cf4f29ec80b0036c41d9e6.zip |
add support for erlang to beam bytecode (#3094)gh-1286
* add support for erlang to beam bytecode
* changed call by 'this' to overridden functions
* Update base-compiler.js
Co-authored-by: Patrick Quist <partouf@gmail.com>
Diffstat (limited to 'lib/compilers/_all.js')
-rw-r--r-- | lib/compilers/_all.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/_all.js b/lib/compilers/_all.js index 1e2139374..bc99138c8 100644 --- a/lib/compilers/_all.js +++ b/lib/compilers/_all.js @@ -37,6 +37,7 @@ export { CrystalCompiler } from './crystal'; export { DefaultCompiler } from './default'; export { DMDCompiler } from './dmd'; export { EllccCompiler } from './ellcc'; +export { ErlangCompiler } from './erlang'; export { EWARMCompiler } from './ewarm'; export { EWAVRCompiler } from './ewavr'; export { FakeCompiler } from './fake-for-test'; |