mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Add type to BuilderListItemFactory extension
Makes it a little clearer how it works.
This commit is contained in:
parent
7008924afe
commit
60f9173421
7 changed files with 38 additions and 4 deletions
|
@ -2,11 +2,19 @@ from .gobject_object import ObjectContent, validate_parent_type
|
|||
from ..parse_tree import Keyword
|
||||
from ..ast_utils import AstNode, validate
|
||||
from .common import *
|
||||
from .types import TypeName
|
||||
from .contexts import ScopeCtx
|
||||
|
||||
|
||||
class ExtListItemFactory(AstNode):
|
||||
grammar = [Keyword("template"), ObjectContent]
|
||||
grammar = [Keyword("template"), Optional(TypeName), ObjectContent]
|
||||
|
||||
@property
|
||||
def type_name(self) -> T.Optional[TypeName]:
|
||||
if len(self.children[TypeName]) == 1:
|
||||
return self.children[TypeName][0]
|
||||
else:
|
||||
return None
|
||||
|
||||
@property
|
||||
def gir_class(self):
|
||||
|
@ -21,6 +29,25 @@ class ExtListItemFactory(AstNode):
|
|||
"sub-templates",
|
||||
)
|
||||
|
||||
@validate()
|
||||
def type_is_list_item(self):
|
||||
if self.type_name is not None:
|
||||
if self.type_name.glib_type_name != "GtkListItem":
|
||||
raise CompileError(f"Only Gtk.ListItem is allowed as a type here")
|
||||
|
||||
@validate("template")
|
||||
def type_name_upgrade(self):
|
||||
if self.type_name is None:
|
||||
raise UpgradeWarning(
|
||||
"Expected type name after 'template' keyword",
|
||||
actions=[
|
||||
CodeAction(
|
||||
"Add ListItem type to template block (introduced in blueprint 0.8.0)",
|
||||
"template ListItem",
|
||||
)
|
||||
],
|
||||
)
|
||||
|
||||
@context(ScopeCtx)
|
||||
def scope_ctx(self) -> ScopeCtx:
|
||||
return ScopeCtx(node=self)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue