diff options
Diffstat (limited to 'lib/compilers/golang.js')
-rw-r--r-- | lib/compilers/golang.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/golang.js b/lib/compilers/golang.js index 4490b52a0..c881bbed0 100644 --- a/lib/compilers/golang.js +++ b/lib/compilers/golang.js @@ -28,7 +28,7 @@ const BaseCompiler = require('../base-compiler'), class GolangCompiler extends BaseCompiler { constructor(info, env) { super(info, env); - return this.initialise(); + this.initResult = this.initialise(); } convertNewGoL(code) { |