Skip to content

Commit a528726

Browse files
committed
Fix parsing of minified JSON
1 parent 51e6021 commit a528726

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

syntaxes/JSON.tmLanguage.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"patterns": [
6464
{
6565
"begin": "(?=\"((?>[^\\\\\"]++|\\\\.)*+)\")",
66-
"end": "(?<=,)|(?=})",
66+
"end": "(?!\\G)(?<=,)|(?=})",
6767
"name": ".$1.",
6868
"patterns": [ { "include": "#objectpair" } ]
6969
},
@@ -80,8 +80,8 @@
8080
{
8181
"begin": ":",
8282
"beginCaptures": { "0": { "name": "punctuation.separator.dictionary.key-value.json" } },
83-
"end": "(,)|(?=})",
84-
"endCaptures": { "1": { "name": "punctuation.separator.dictionary.pair.json" } },
83+
"end": ",|(?=})",
84+
"endCaptures": { "0": { "name": "punctuation.separator.dictionary.pair.json" } },
8585
"name": "meta.structure.dictionary.value.json",
8686
"patterns": [
8787
{

syntaxes/JSONC.tmLanguage.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"patterns": [
6464
{
6565
"begin": "(?=\"((?>[^\\\\\"]++|\\\\.)*+)\")",
66-
"end": "(?<=,)|(?=})",
66+
"end": "(?!\\G)(?<=,)|(?=})",
6767
"name": ".$1.",
6868
"patterns": [ { "include": "#objectpair" } ]
6969
},
@@ -80,8 +80,8 @@
8080
{
8181
"begin": ":",
8282
"beginCaptures": { "0": { "name": "punctuation.separator.dictionary.key-value.json.comments" } },
83-
"end": "(,)|(?=})",
84-
"endCaptures": { "1": { "name": "punctuation.separator.dictionary.pair.json.comments" } },
83+
"end": ",|(?=})",
84+
"endCaptures": { "0": { "name": "punctuation.separator.dictionary.pair.json.comments" } },
8585
"name": "meta.structure.dictionary.value.json.comments",
8686
"patterns": [
8787
{

0 commit comments

Comments
 (0)