aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/tendra.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/tendra.js')
-rw-r--r--lib/compilers/tendra.js7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/compilers/tendra.js b/lib/compilers/tendra.js
index 2301521f7..eeafaf1b3 100644
--- a/lib/compilers/tendra.js
+++ b/lib/compilers/tendra.js
@@ -1,7 +1,6 @@
-const
- GccCompiler = require('./gcc');
+import { GCCCompiler } from './gcc';
-class TenDRACompiler extends GccCompiler {
+export class TenDRACompiler extends GCCCompiler {
static get key() { return 'tendra'; }
optionsForFilter(filters, outputFilename) {
@@ -10,5 +9,3 @@ class TenDRACompiler extends GccCompiler {
return options;
}
}
-
-module.exports = TenDRACompiler;