The dict of keyword arguments to this ``Node``. The interpretation of arguments depends on the node's opcode. See the :class:`Node` docstring for more information. Assignment to this property is allowed. All accounting of uses and users is updated automatica
(self)
| 316 | |
| 317 | @property |
| 318 | def kwargs(self) -> Dict[str, Argument]: |
| 319 | """ |
| 320 | The dict of keyword arguments to this ``Node``. The interpretation of arguments |
| 321 | depends on the node's opcode. See the :class:`Node` docstring for more |
| 322 | information. |
| 323 | |
| 324 | Assignment to this property is allowed. All accounting of uses and users |
| 325 | is updated automatically on assignment. |
| 326 | """ |
| 327 | return self._kwargs |
| 328 | |
| 329 | @kwargs.setter |
| 330 | def kwargs(self, k : Dict[str, Argument]): |
nothing calls this directly
no test coverage detected