(s, depth=0, reflow=True)
| 413 | |
| 414 | def emit_function(self, name, ctype, args, attrs, union=True): |
| 415 | def emit(s, depth=0, reflow=True): |
| 416 | self.emit(s, depth, reflow) |
| 417 | argstr = ", ".join(["%s %s" % (atype, aname) |
| 418 | for atype, aname, opt in args + attrs]) |
| 419 | if argstr: |