rabbitizer/tables/templates/python/InstrCategory.tablepyi.template

18 lines
384 B
Plaintext
Raw Normal View History

2023-04-30 17:39:05 -04:00
/* SPDX-FileCopyrightText: © 2023 Decompollaborate */
/* SPDX-License-Identifier: MIT */
from __future__ import annotations
from .Enum import Enum
#define RABBITIZER_DEF_INSTR_CATEGORY(name) name: Enum
class InstrCategory:
#include "InstrCategory.inc"
2023-04-30 17:39:05 -04:00
MAX: Enum
@staticmethod
def fromStr(name: str | None) -> Enum|None: ...
#undef RABBITIZER_DEF_INSTR_CATEGORY