( self, other )
| 597 | |
| 598 | |
| 599 | def __eq__( self, other ): |
| 600 | return ( self.prop_type == other.prop_type and |
| 601 | self.start_line == other.start_line and |
| 602 | self.start_column == other.start_column and |
| 603 | self.end_line == other.end_line and |
| 604 | self.end_column == other.end_column ) |
| 605 | |
| 606 | |
| 607 | def __repr__( self ): |
nothing calls this directly
no outgoing calls
no test coverage detected