(self, left, right)
| 140 | self.current_target, [str(token) for token in right.children]) |
| 141 | |
| 142 | def _AssignAdd(self, left, right): |
| 143 | if left == 'sources': |
| 144 | return self.builder.BuildAppendSources( |
| 145 | self.current_target, [str(token) for token in right.children]) |
| 146 | |
| 147 | def _AssignSub(self, left, right): |
| 148 | if left == 'sources': |
nothing calls this directly
no test coverage detected