aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/golang.js
diff options
context:
space:
mode:
authorpartouf <partouf@gmail.com>2018-01-28 01:50:06 +0100
committerpartouf <partouf@gmail.com>2018-01-28 01:50:06 +0100
commitb46611d8d452e96228d78bea658686969b85aecf (patch)
treef18d9dc4370d5513c13a89ba02cc18bc5cdfc46e /lib/compilers/golang.js
parent68a7f9420dbb318303e255de14aff46721d933ac (diff)
downloadcompiler-explorer-b46611d8d452e96228d78bea658686969b85aecf.tar.gz
compiler-explorer-b46611d8d452e96228d78bea658686969b85aecf.zip
remove obsolete/empty constructors
Diffstat (limited to 'lib/compilers/golang.js')
-rw-r--r--lib/compilers/golang.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/compilers/golang.js b/lib/compilers/golang.js
index 3f03ca438..a2052382b 100644
--- a/lib/compilers/golang.js
+++ b/lib/compilers/golang.js
@@ -26,10 +26,6 @@ const BaseCompiler = require('../base-compiler'),
_ = require('underscore-node');
class GolangCompiler extends BaseCompiler {
- constructor(info, env) {
- super(info, env);
- }
-
convertNewGoL(code) {
const re = /^\s+(0[xX]?[0-9A-Za-z]+)?\s?[0-9]+\s*\(([^:]+):([0-9]+)\)\s*([A-Z]+)(.*)/;
let prevLine = null;