| 1362 | |
| 1363 | |
| 1364 | class XLEIntField(LEIntField, XIntField): |
| 1365 | def i2repr(self, pkt, x): |
| 1366 | # type: (Optional[Packet], int) -> str |
| 1367 | return XIntField.i2repr(self, pkt, x) |
| 1368 | |
| 1369 | |
| 1370 | class XLEShortField(LEShortField, XShortField): |
no outgoing calls
no test coverage detected