diff options
| author | Gubolin <gubolin@fantasymail.de> | 2015-04-01 16:08:17 +0200 |
|---|---|---|
| committer | Gubolin <gubolin@fantasymail.de> | 2015-04-01 16:08:17 +0200 |
| commit | 8a83be1c8a37ed3b3672c77028741ec5ec8c7b5a (patch) | |
| tree | e6277947c606665cd3029340e5e5adb4fdb1e413 | |
| parent | a2c7c28f741f89a560ce20b3d2088fd7b3363c22 (diff) | |
| parent | 303188f2d5c3280972d02060e8e0fdaf50b4310e (diff) | |
| download | snap-8a83be1c8a37ed3b3672c77028741ec5ec8c7b5a.tar.gz snap-8a83be1c8a37ed3b3672c77028741ec5ec8c7b5a.zip | |
Merge OOP
| -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; } |
