(self, left, right)
| 145 | self.current_target, [str(token) for token in right.children]) |
| 146 | |
| 147 | def _AssignSub(self, left, right): |
| 148 | if left == 'sources': |
| 149 | return self.builder.BuildRemoveSources( |
| 150 | self.current_target, [str(token) for token in right.children]) |
| 151 | |
| 152 | def _Condition(self, cond_expr, then_stmts, else_stmts=None): |
| 153 | 'Visit GN condition: if (cond) {then_stmts} else {else_stmts}' |
nothing calls this directly
no test coverage detected