Skip to content

Avoid initializing the same JS variable multiple times.

Philipp Marek requested to merge pmarek/parenscript:master into master

Example input of

(ps:ps (loop ... collect ... collect ...))

resulted in

(function () {
    var collect41 = [];
    var collect41 = [];
        ...

Merge request reports