diff options
Diffstat (limited to 'lib/compilers/golang.js')
-rw-r--r-- | lib/compilers/golang.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/compilers/golang.js b/lib/compilers/golang.js index 7e6af5362..8c298ad38 100644 --- a/lib/compilers/golang.js +++ b/lib/compilers/golang.js @@ -23,6 +23,7 @@ // POSSIBILITY OF SUCH DAMAGE. const BaseCompiler = require('../base-compiler'), + argumentParsers = require("./argument-parsers"), _ = require('underscore'), utils = require('../utils'); @@ -192,6 +193,10 @@ class GolangCompiler extends BaseCompiler { } return execOptions; } + + getArgumentParser() { + return argumentParsers.Clang; + } } module.exports = GolangCompiler; |