* Fix broken language service (#394)

* Fix indexes not expanding (#396)

* Fix broken language service

* fix index not expanding

* Dev/daeunyim/fix broken language service (#397)

* Fix broken language service

* fix index not expanding

* fix style issue

* Fix common.py
This commit is contained in:
Daeun Yim 2023-04-29 00:09:14 -07:00 коммит произвёл GitHub
Родитель 22fcaadd9d
Коммит ddae8cbc0b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -94,6 +94,10 @@ class TextDocumentPosition(Serializable):
self.text_document: TextDocumentIdentifier = None
self.position: Position = None
@classmethod
def ignore_extra_attributes(cls):
return True
class Location(Serializable):
"""

Просмотреть файл

@ -344,3 +344,7 @@ class NodeCollection(Generic[TNC]):
def reset(self) -> None:
# Empty the items so that next iteration will reload the collection
self._items_impl = None
def refresh(self) -> None:
"""Refreshes and lazily loaded data"""
self.reset()