diff options
| author | jmoenig <jens@moenig.org> | 2014-12-17 12:35:13 +0100 |
|---|---|---|
| committer | jmoenig <jens@moenig.org> | 2014-12-17 12:35:13 +0100 |
| commit | b31df39d7f126eaa303c8dae1cf6a14c739a2cc5 (patch) | |
| tree | 4f0ed9330b71b52f7d6d22999dcbd60edcb4cd97 | |
| parent | fc256e9e727bfe85fbf885cc65afa3b152430c71 (diff) | |
| download | snap-b31df39d7f126eaa303c8dae1cf6a14c739a2cc5.tar.gz snap-b31df39d7f126eaa303c8dae1cf6a14c739a2cc5.zip | |
Let “zombifying” scripts access receivers’ local vars
| -rwxr-xr-x | history.txt | 1 | ||||
| -rw-r--r-- | threads.js | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/history.txt b/history.txt index 1ec5c83..6d6f0ff 100755 --- a/history.txt +++ b/history.txt @@ -2403,3 +2403,4 @@ ______ ------ * Objects, Store: Experimental “processes” count watcher (hidden in dev mode) * Threads: Remove terminated processes from expired clones +* Threads: Let “zombifying” scripts access receivers’ local vars @@ -2546,6 +2546,7 @@ Process.prototype.reportContextFor = function (context, otherObj) { if (result.outerContext) { result.outerContext = copy(result.outerContext); result.outerContext.receiver = otherObj; + result.outerContext.variables.parentFrame = otherObj.variables; } return result; }; |
