(self, attr)
| 98 | self.skip_input_indices = skip_input_indices |
| 99 | |
| 100 | def get_attr(self, attr): |
| 101 | typ = op_attr_type(self.type, attr) |
| 102 | for i in range(0, len(self.attrs), 2): |
| 103 | if self.attrs[i] == attr: |
| 104 | return make_attr(typ, self.attrs[i + 1]) |
| 105 | raise KeyError(attr) |
| 106 | |
| 107 | def _get_control_flow_context(self): |
| 108 | raise NotImplementedError( |