(cls, arg)
| 936 | class PlayerNoAF(IntArgFormat): |
| 937 | @classmethod |
| 938 | def check(cls, arg): |
| 939 | if not util.is_constant(arg): |
| 940 | raise CompilerError('Player number must be known at compile time') |
| 941 | super(PlayerNoAF, cls).check(arg) |
| 942 | if arg > 256: |
| 943 | raise ArgumentError(arg, 'Player number > 256') |
| 944 | |
| 945 | class String(ArgFormat): |
| 946 | length = 16 |
nothing calls this directly
no test coverage detected