summaryrefslogtreecommitdiffstats
path: root/test/data/snippets/emptyifelse.pp
Commit message (Collapse)AuthorAgeFilesLines
* Fix #1109 - allow empty if or else branchesBrice Figureau2008-10-071-0/+9
This changesets allow empty if or else branches: if true { } else { } It works by emitting on the parser stack an AST node that doesn't do anything (a no-op). This allows the less intrusive code as no part of the if evaluation code has been touched.