Skip to content

Commit 6e52182

Browse files
hypno2000lerno
authored andcommitted
fix: switch block/expression order
1 parent 7510354 commit 6e52182

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

syntaxes/c3.tmLanguage.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1411,14 +1411,14 @@
14111411
{
14121412
"include": "#control_statements"
14131413
},
1414-
{
1415-
"include": "#block"
1416-
},
14171414
{
14181415
"include": "#declaration"
14191416
},
14201417
{
14211418
"include": "#expression"
1419+
},
1420+
{
1421+
"include": "#block"
14221422
}
14231423
]
14241424
},

syntaxes/c3.tmLanguage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,9 +715,9 @@ repository:
715715

716716
- include: "#control_statements"
717717

718-
- include: "#block"
719718
- include: "#declaration"
720719
- include: "#expression"
720+
- include: "#block"
721721

722722
variable:
723723
match: '(?<!#)\$?\b{{IDENT}}\b'

0 commit comments

Comments
 (0)