Remove some semicolons

Remove semicolons everywhere except 'using' statements, properties,
attributes, and signals.

This should be the last breaking change to the syntax.
This commit is contained in:
James Westman 2021-11-30 21:01:49 -06:00
parent 878ff1b37b
commit be3c0de670
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
18 changed files with 24 additions and 24 deletions

View file

@ -65,7 +65,7 @@ item = Group(
items = Group(
Items,
Statement(
Sequence(
Keyword("items", True),
OpenBracket(),
Delimited(

View file

@ -49,7 +49,7 @@ class FilterString(AstNode):
def create_node(tag_name: str, singular: str):
return Group(
Filters,
Statement(
Sequence(
Keyword(tag_name, True),
UseLiteral("tag_name", tag_name),
OpenBracket(),

View file

@ -60,7 +60,7 @@ class Widget(AstNode):
widgets = Group(
Widgets,
Statement(
Sequence(
Keyword("widgets", True),
OpenBracket(),
Delimited(

View file

@ -61,7 +61,7 @@ item = Group(
strings = Group(
Items,
Statement(
Sequence(
Keyword("strings", True),
OpenBracket(),
Delimited(

View file

@ -46,7 +46,7 @@ class StyleClass(AstNode):
styles = Group(
Styles,
Statement(
Sequence(
Keyword("styles", True),
OpenBracket(),
Delimited(