Änderungen

Summary

  1. Fixed Jass Rewrite Engine (commit: a9d2580) (details)
Commit a9d258036a7294775ac33bb9a403d7c5598ad1f3 by lep.delete
Fixed Jass Rewrite Engine
We had that `a-b-c` was rewritten to `a` based on the rewrite rule
`-(-a) --> a`. That was because we use zipWithM to match all arguments
to a potential call after checking if the name of the function matches.
That means if the name matches and all the arguments to the LHS of the
rule match the remaining arguments of the RHS got dropped (due to normal
zip behaviour). To fix this we simply check if the length of both
argument lists is equal.
(commit: a9d2580)
The file was modifiedJass/Opt/Rewrite.hs (diff)