mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
fix(python,starlark): builtin types should come after types
This commit is contained in:
parent
01b42a1a57
commit
87faf372eb
3 changed files with 39 additions and 37 deletions
|
|
@ -1,5 +1,7 @@
|
|||
class Fields:
|
||||
def __init__(self, fields):
|
||||
def __init__(self, fields: list[int]) -> None:
|
||||
# ^^^ @type.builtin
|
||||
# ^^^^ @constant.builtin
|
||||
self.fields = fields
|
||||
# ^^^^^^ @field
|
||||
self.__dunderfield__ = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue