Update grammars

This commit is contained in:
Alex Ross 2020-09-07 16:47:30 +02:00
parent ee2ba80107
commit 5cd1eff604
6 changed files with 43 additions and 8 deletions

View file

@ -6,11 +6,11 @@
"git": {
"name": "atom/language-java",
"repositoryUrl": "https://github.com/atom/language-java",
"commitHash": "2e179ceac423403eb5bf0eff26884093c3edba6f"
"commitHash": "f631536a4137d65b622f01cebeac72345f9e6f70"
}
},
"license": "MIT",
"version": "0.31.4"
"version": "0.31.5"
}
],
"version": 1

View file

@ -4,7 +4,7 @@
"If you want to provide a fix or improvement, please create a pull request against the original repository.",
"Once accepted there, we are happy to receive an update request."
],
"version": "https://github.com/atom/language-java/commit/2e179ceac423403eb5bf0eff26884093c3edba6f",
"version": "https://github.com/atom/language-java/commit/f631536a4137d65b622f01cebeac72345f9e6f70",
"name": "Java",
"scopeName": "source.java",
"patterns": [
@ -1785,7 +1785,7 @@
]
},
"variables": {
"begin": "(?x)\n(?=\n (\n \\b(void|boolean|byte|char|short|int|float|long|double)\\b\n |\n (?>(\\w+\\.)*[A-Z_]+\\w*) # e.g. `javax.ws.rs.Response`, or `String`\n )\n \\s*\n (\n <[\\w<>,\\.?\\s\\[\\]]*> # e.g. `HashMap<Integer, String>`, or `List<java.lang.String>`\n )?\n \\s*\n (\n (\\[\\])* # int[][]\n )?\n \\s+\n [A-Za-z_$][\\w$]* # At least one identifier after space\n ([\\w\\[\\],$][\\w\\[\\],\\s]*)? # possibly primitive array or additional identifiers\n \\s*(=|:|;)\n)",
"begin": "(?x)\n(?=\n \\b\n (\n (void|boolean|byte|char|short|int|float|long|double)\n |\n (?>(\\w+\\.)*[A-Z_]+\\w*) # e.g. `javax.ws.rs.Response`, or `String`\n )\n \\b\n \\s*\n (\n <[\\w<>,\\.?\\s\\[\\]]*> # e.g. `HashMap<Integer, String>`, or `List<java.lang.String>`\n )?\n \\s*\n (\n (\\[\\])* # int[][]\n )?\n \\s+\n [A-Za-z_$][\\w$]* # At least one identifier after space\n ([\\w\\[\\],$][\\w\\[\\],\\s]*)? # possibly primitive array or additional identifiers\n \\s*(=|:|;)\n)",
"end": "(?=\\=|:|;)",
"name": "meta.definition.variable.java",
"patterns": [

View file

@ -6,7 +6,7 @@
"git": {
"name": "language-php",
"repositoryUrl": "https://github.com/atom/language-php",
"commitHash": "11cdaf62a9d949d3aca550f1a58c9754de6b5ab0"
"commitHash": "6c0da475f86b45ea990638525f68be7658986546"
}
},
"license": "MIT",

View file

@ -4,7 +4,7 @@
"If you want to provide a fix or improvement, please create a pull request against the original repository.",
"Once accepted there, we are happy to receive an update request."
],
"version": "https://github.com/atom/language-php/commit/11cdaf62a9d949d3aca550f1a58c9754de6b5ab0",
"version": "https://github.com/atom/language-php/commit/6c0da475f86b45ea990638525f68be7658986546",
"scopeName": "source.php",
"patterns": [
{
@ -1329,6 +1329,17 @@
}
]
},
"named-arguments": {
"match": "(?i)(?<=^|\\(|,)\\s*([a-z_\\x{7f}-\\x{7fffffff}][a-z0-9_\\x{7f}-\\x{7fffffff}]*)\\s*(:)(?!:)",
"captures": {
"1": {
"name": "entity.name.variable.parameter.php"
},
"2": {
"name": "punctuation.separator.colon.php"
}
}
},
"function-call": {
"patterns": [
{
@ -1357,6 +1368,9 @@
},
"name": "meta.function-call.php",
"patterns": [
{
"include": "#named-arguments"
},
{
"include": "$self"
}
@ -1395,6 +1409,9 @@
},
"name": "meta.function-call.php",
"patterns": [
{
"include": "#named-arguments"
},
{
"include": "$self"
}
@ -2242,6 +2259,9 @@
},
"name": "meta.method-call.php",
"patterns": [
{
"include": "#named-arguments"
},
{
"include": "$self"
}
@ -2614,6 +2634,9 @@
},
"name": "meta.method-call.static.php",
"patterns": [
{
"include": "#named-arguments"
},
{
"include": "$self"
}
@ -3447,6 +3470,18 @@
}
},
"patterns": [
{
"match": "(?i)^\\s*([a-z_\\x{7f}-\\x{7fffffff}][a-z0-9_\\x{7f}-\\x{7fffffff}]*)\\s*(?=:(?!:))",
"captures": {
"1": {
"patterns": [
{
"include": "$self"
}
]
}
}
},
{
"include": "$self"
}

View file

@ -6,7 +6,7 @@
"git": {
"name": "Microsoft/vscode-mssql",
"repositoryUrl": "https://github.com/Microsoft/vscode-mssql",
"commitHash": "750d30dc48c4c0317b63bb5f1ed3e71487bb84a1"
"commitHash": "61ae0eb21ac53883a23e09913a5ae77a59126ff9"
}
},
"license": "MIT",

View file

@ -4,7 +4,7 @@
"If you want to provide a fix or improvement, please create a pull request against the original repository.",
"Once accepted there, we are happy to receive an update request."
],
"version": "https://github.com/Microsoft/vscode-mssql/commit/750d30dc48c4c0317b63bb5f1ed3e71487bb84a1",
"version": "https://github.com/Microsoft/vscode-mssql/commit/61ae0eb21ac53883a23e09913a5ae77a59126ff9",
"name": "SQL",
"scopeName": "source.sql",
"patterns": [