aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/ada.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/ada.js')
-rw-r--r--lib/compilers/ada.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/compilers/ada.js b/lib/compilers/ada.js
index 1f3c58e52..c77d7c02f 100644
--- a/lib/compilers/ada.js
+++ b/lib/compilers/ada.js
@@ -24,7 +24,7 @@
const BaseCompiler = require('../base-compiler'),
utils = require('../utils'),
- path = require("path");
+ path = require('path');
class AdaCompiler extends BaseCompiler {
constructor(info, env) {
@@ -34,11 +34,11 @@ class AdaCompiler extends BaseCompiler {
}
getExecutableFilename(dirPath) {
- return path.join(dirPath, "example");
+ return path.join(dirPath, 'example');
}
getOutputFilename(dirPath) {
- return path.join(dirPath, "example.o");
+ return path.join(dirPath, 'example.o');
}
optionsForFilter(filters, outputFilename) {
@@ -59,7 +59,7 @@ class AdaCompiler extends BaseCompiler {
);
if (this.compiler.intelAsm && filters.intel) {
- options = options.concat(this.compiler.intelAsm.split(" "));
+ options = options.concat(this.compiler.intelAsm.split(' '));
}
} else {
options.push(
@@ -67,7 +67,7 @@ class AdaCompiler extends BaseCompiler {
'-eS',
'-g',
'example',
- '-cargs'
+ '-cargs',
);
}