Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
theHamsta committed Sep 4, 2022
1 parent bc48d8e commit cb72fa0
Show file tree
Hide file tree
Showing 5 changed files with 242,482 additions and 239,285 deletions.
28 changes: 14 additions & 14 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 22 additions & 31 deletions src/grammar.json
Expand Up @@ -4563,22 +4563,6 @@
}
]
},
"attributed_non_case_statement": {
"type": "SEQ",
"members": [
{
"type": "REPEAT1",
"content": {
"type": "SYMBOL",
"name": "attribute_declaration"
}
},
{
"type": "SYMBOL",
"name": "_non_case_statement"
}
]
},
"_statement": {
"type": "CHOICE",
"members": [
Expand All @@ -4598,6 +4582,10 @@
{
"type": "CHOICE",
"members": [
{
"type": "SYMBOL",
"name": "attributed_statement"
},
{
"type": "SYMBOL",
"name": "labeled_statement"
Expand Down Expand Up @@ -4853,15 +4841,6 @@
"content": {
"type": "CHOICE",
"members": [
{
"type": "ALIAS",
"content": {
"type": "SYMBOL",
"name": "attributed_non_case_statement"
},
"named": true,
"value": "attributed_statement"
},
{
"type": "SYMBOL",
"name": "_non_case_statement"
Expand Down Expand Up @@ -5003,8 +4982,17 @@
"type": "CHOICE",
"members": [
{
"type": "SYMBOL",
"name": "_expression"
"type": "CHOICE",
"members": [
{
"type": "SYMBOL",
"name": "_expression"
},
{
"type": "SYMBOL",
"name": "comma_expression"
}
]
},
{
"type": "BLANK"
Expand Down Expand Up @@ -5046,8 +5034,12 @@
"value": ")"
},
{
"type": "SYMBOL",
"name": "_statement"
"type": "FIELD",
"name": "body",
"content": {
"type": "SYMBOL",
"name": "_statement"
}
}
]
},
Expand Down Expand Up @@ -12624,12 +12616,11 @@
"sized_type_specifier"
],
[
"_declaration_modifiers",
"attributed_statement"
],
[
"_declaration_modifiers",
"attributed_non_case_statement"
"attributed_statement"
],
[
"template_function",
Expand Down
56 changes: 18 additions & 38 deletions src/node-types.json
Expand Up @@ -271,6 +271,10 @@
"type": "_statement",
"named": true,
"subtypes": [
{
"type": "attributed_statement",
"named": true
},
{
"type": "break_statement",
"named": true
Expand Down Expand Up @@ -1482,10 +1486,6 @@
"type": "alias_declaration",
"named": true
},
{
"type": "attributed_statement",
"named": true
},
{
"type": "concept_definition",
"named": true
Expand Down Expand Up @@ -1961,10 +1961,6 @@
"type": "alias_declaration",
"named": true
},
{
"type": "attributed_statement",
"named": true
},
{
"type": "concept_definition",
"named": true
Expand Down Expand Up @@ -2806,13 +2802,27 @@
"type": "for_statement",
"named": true,
"fields": {
"body": {
"multiple": false,
"required": true,
"types": [
{
"type": "_statement",
"named": true
}
]
},
"condition": {
"multiple": false,
"required": false,
"types": [
{
"type": "_expression",
"named": true
},
{
"type": "comma_expression",
"named": true
}
]
},
Expand Down Expand Up @@ -2848,16 +2858,6 @@
}
]
}
},
"children": {
"multiple": false,
"required": true,
"types": [
{
"type": "_statement",
"named": true
}
]
}
},
{
Expand Down Expand Up @@ -4200,10 +4200,6 @@
"type": "alias_declaration",
"named": true
},
{
"type": "attributed_statement",
"named": true
},
{
"type": "concept_definition",
"named": true
Expand Down Expand Up @@ -4307,10 +4303,6 @@
"type": "alias_declaration",
"named": true
},
{
"type": "attributed_statement",
"named": true
},
{
"type": "concept_definition",
"named": true
Expand Down Expand Up @@ -4503,10 +4495,6 @@
"type": "alias_declaration",
"named": true
},
{
"type": "attributed_statement",
"named": true
},
{
"type": "concept_definition",
"named": true
Expand Down Expand Up @@ -4635,10 +4623,6 @@
"type": "alias_declaration",
"named": true
},
{
"type": "attributed_statement",
"named": true
},
{
"type": "concept_definition",
"named": true
Expand Down Expand Up @@ -5577,10 +5561,6 @@
"type": "alias_declaration",
"named": true
},
{
"type": "attributed_statement",
"named": true
},
{
"type": "concept_definition",
"named": true
Expand Down

0 comments on commit cb72fa0

Please sign in to comment.