Remove obsolete comment about parentheses (they are now implicit).

This commit is contained in:
Sei Lisa 2015-03-03 00:47:15 +01:00
parent c650ad26f8
commit d8f42a5071

View file

@ -152,7 +152,6 @@ class foldconst(object):
self.FoldTree(child, 0)
if child[0]['nt'] == 'NEG':
# Double negation: - - expr --> expr
# NOTE: Not 100% sure this doesn't need parentheses around expr.
node = parent[index] = child[0]['ch'][0]
child = node['ch'] if 'ch' in node else None
elif child[0]['nt'] == 'CONST':