(self, left, right)
| 135 | return self.ASSIGN_TYPES[op.data](self, left, right) |
| 136 | |
| 137 | def _AssignEq(self, left, right): |
| 138 | if left == 'sources': |
| 139 | return self.builder.BuildSourcesList( |
| 140 | self.current_target, [str(token) for token in right.children]) |
| 141 | |
| 142 | def _AssignAdd(self, left, right): |
| 143 | if left == 'sources': |
nothing calls this directly
no test coverage detected