Defines an atom of a signed integral type (int kind).
| 672 | |
| 673 | |
| 674 | class IntAtom(Atom): # type: ignore[misc] |
| 675 | """Defines an atom of a signed integral type (int kind).""" |
| 676 | |
| 677 | kind: str = "int" |
| 678 | signed: bool = True |
| 679 | _deftype = "int32" |
| 680 | _defvalue = 0 |
| 681 | __init__ = _abstract_atom_init( |
| 682 | _deftype, _defvalue |
| 683 | ) # type: ignore[assignment] |
| 684 | |
| 685 | |
| 686 | class UIntAtom(Atom): # type: ignore[misc] |
nothing calls this directly
no test coverage detected