Handle nested collect-element inside a traverse-element

This commit is contained in:
Wei Tang 2017-01-15 22:06:50 +08:00 committed by Matthew Flatt
parent 70586da699
commit b07234e8ee

View File

@ -680,6 +680,8 @@
(begin (when (target-element? i) (collect-target-element i ci))
(when (index-element? i) (collect-index-element i ci))
(when (collect-element? i) ((collect-element-collect i) ci))
(when (traverse-element? i)
(collect-content (traverse-element-content i ci) ci))
(when (element? i)
(collect-content (element-content i) ci))
(when (multiarg-element? i)