diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-11-19 09:57:57 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-11-19 09:57:57 -0800 |
commit | 0af3502cde9a78f23e898264ed3a59ff88816541 (patch) | |
tree | 2c626192dc6c019a3cf308fdf0d819fe2a1e2643 /src/parseTools.js | |
parent | cc86495ebd83005e1f63bfa12b90d903d7ac7b66 (diff) |
fix for phis from invoke
Diffstat (limited to 'src/parseTools.js')
-rw-r--r-- | src/parseTools.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parseTools.js b/src/parseTools.js index 07855c70..e94279ee 100644 --- a/src/parseTools.js +++ b/src/parseTools.js @@ -1696,6 +1696,7 @@ function walkInterdata(item, pre, post, obj) { var originalObj = obj; if (obj && obj.replaceWith) obj = obj.replaceWith; // allow pre to replace the object we pass to all its children if (item.value && walkInterdata(item.value, pre, post, obj)) return true; + if (item.dependent && walkInterdata(item.dependent, pre, post, obj)) return true; var i; for (i = 1; i <= 4; i++) { if (item['param'+i] && walkInterdata(item['param'+i], pre, post, obj)) return true; |