diff options
| -rwxr-xr-x | history.txt | 1 | ||||
| -rw-r--r-- | threads.js | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/history.txt b/history.txt index bf66594..8a2066d 100755 --- a/history.txt +++ b/history.txt @@ -2492,3 +2492,4 @@ ______ 150325 ------ * Threads: fixed #752 +* OOP: integrated and adjusted fix for #752 @@ -1182,7 +1182,8 @@ Process.prototype.doSetVar = function (varName, value) { if (name.expression.selector === 'reportGetVar') { name.variables.setVar( name.expression.blockSpec, - value + value, + this.blockReceiver() ); return; } @@ -1198,7 +1199,8 @@ Process.prototype.doChangeVar = function (varName, value) { if (name.expression.selector === 'reportGetVar') { name.variables.changeVar( name.expression.blockSpec, - value + value, + this.blockReceiver() ); return; } |
