fix double-evaluation of macros in automatic main function

This commit is contained in:
2021-07-25 22:08:21 -06:00
parent 16bb647a84
commit d8b0ba1435

View File

@@ -223,8 +223,11 @@ class Kiss {
}
// When calling from build(), we can't add all expressions to the (begin) returned by (load), because that will
// cause double-evaluation of field forms
if (loadAllExps || !isEmpty(expr)) {
if (loadAllExps) {
loadedExps.push(nextExp);
} else if (!isEmpty(expr)) {
// don't double-compile macros:
loadedExps.push(RawHaxe(expr.toString()).withPosOf(nextExp));
}
});