diff options
author | Jose <jose@zeroc.com> | 2017-04-14 15:53:44 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-04-14 15:53:44 +0200 |
commit | 143f66813fc76abd4941f9bf2079cd3b92ab61fe (patch) | |
tree | b9d4022213a996693926d8bcff371bf91171dd38 /js/test/Common/ControllerWorker.js | |
parent | Add icegrid to icegridadmin MSBuild dependencies (diff) | |
download | ice-143f66813fc76abd4941f9bf2079cd3b92ab61fe.tar.bz2 ice-143f66813fc76abd4941f9bf2079cd3b92ab61fe.tar.xz ice-143f66813fc76abd4941f9bf2079cd3b92ab61fe.zip |
Minor JS fixes
Diffstat (limited to 'js/test/Common/ControllerWorker.js')
-rw-r--r-- | js/test/Common/ControllerWorker.js | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/js/test/Common/ControllerWorker.js b/js/test/Common/ControllerWorker.js index e763254e6c1..42ff436b62d 100644 --- a/js/test/Common/ControllerWorker.js +++ b/js/test/Common/ControllerWorker.js @@ -9,7 +9,10 @@ /* global self : false, - runTest : false + runTest : false, + _server : false, + _serveramd : false, + _test : false */ var process = { argv : [] }; @@ -38,8 +41,8 @@ self.onmessage = function(e) { constructor(out) { - super() - this._out = out + super(); + this._out = out; } write(message, indent) @@ -52,7 +55,7 @@ self.onmessage = function(e) } } - let promise + let promise; let initData = new Ice.InitializationData(); initData.properties = Ice.createProperties(e.data.args); initData.logger = new Logger(out); |