mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
lsp: Add document outline
This commit is contained in:
parent
950b141d26
commit
e087aeb44f
24 changed files with 469 additions and 28 deletions
|
@ -46,10 +46,19 @@ class Template(Object):
|
|||
|
||||
@property
|
||||
def signature(self) -> str:
|
||||
if self.parent_type:
|
||||
return f"template {self.gir_class.full_name} : {self.parent_type.gir_type.full_name}"
|
||||
if self.parent_type and self.parent_type.gir_type:
|
||||
return f"template {self.class_name.as_string} : {self.parent_type.gir_type.full_name}"
|
||||
else:
|
||||
return f"template {self.gir_class.full_name}"
|
||||
return f"template {self.class_name.as_string}"
|
||||
|
||||
@property
|
||||
def document_symbol(self) -> DocumentSymbol:
|
||||
return DocumentSymbol(
|
||||
self.signature,
|
||||
SymbolKind.Object,
|
||||
self.range,
|
||||
self.group.tokens["id"].range,
|
||||
)
|
||||
|
||||
@property
|
||||
def gir_class(self) -> GirType:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue