Odd that Python 2.7.3 did not complain about this...
Cat's Eye Technologies
10 years ago
124 | 124 |
for prod in module.prodlist:
|
125 | 125 |
self.emit("void prod_%s_%s(%s);" % (
|
126 | 126 |
mod_name, prod.name,
|
127 | |
', '.join(["const struct term *" % f
|
|
127 |
', '.join(["const struct term *"
|
128 | 128 |
for f in prod.branches[0].formals])
|
129 | 129 |
))
|
130 | 130 |
self.emit("")
|