(self, pos, type)
| 511 | return |
| 512 | |
| 513 | def start_type(self, pos, type): |
| 514 | self.context.append((pos, self.curtype, self.curstack)) |
| 515 | (self.curtype, self.curstack) = (type, []) |
| 516 | if 2 <= self.debug: |
| 517 | print >>sys.stderr, 'start_type: pos=%r, type=%r' % (pos, type) |
| 518 | return |
| 519 | |
| 520 | def end_type(self, type): |
| 521 | if self.curtype != type: |
no test coverage detected