mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
12 lines
455 B
Python
12 lines
455 B
Python
class Fields:
|
|
def __init__(self, fields: list[int]) -> None:
|
|
# ^^^ @type.builtin
|
|
# ^^^^ @constant.builtin
|
|
self.fields = fields
|
|
# ^^^^^^ @field
|
|
self.__dunderfield__ = None
|
|
# ^^^^^^^^^^^^^^^ @field
|
|
self._FunKyFielD = 0
|
|
# ^^^^^^^^^^^ @field
|
|
self.NOT_A_FIELD = "IM NOT A FIELD"
|
|
# ^^^^^^^^^^^ @constant
|