github-linguist 5.0.0 → 5.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (44) hide show
  1. checksums.yaml +4 -4
  2. data/bin/git-linguist +10 -2
  3. data/bin/linguist +26 -9
  4. data/grammars/config.xcompose.json +83 -0
  5. data/grammars/hint.haskell.json +21 -30
  6. data/grammars/hint.message.haskell.json +21 -30
  7. data/grammars/hint.type.haskell.json +21 -30
  8. data/grammars/source.bsl.json +42 -28
  9. data/grammars/source.cs.json +656 -131
  10. data/grammars/source.csound-document.json +142 -25
  11. data/grammars/source.csound-score.json +13 -10
  12. data/grammars/source.csound.json +136 -81
  13. data/grammars/source.css.json +1501 -331
  14. data/grammars/source.css.less.json +3 -3
  15. data/grammars/source.d.json +60 -44
  16. data/grammars/source.gn.json +240 -138
  17. data/grammars/source.graphql.json +781 -155
  18. data/grammars/source.haskell.json +21 -30
  19. data/grammars/source.js.json +46 -46
  20. data/grammars/source.mask.json +1 -1
  21. data/grammars/source.perl6fe.json +1151 -763
  22. data/grammars/source.python.json +45 -23
  23. data/grammars/source.quoting.perl6fe.json +2170 -0
  24. data/grammars/source.reason.json +296 -0
  25. data/grammars/source.regexp.perl6fe.json +27 -0
  26. data/grammars/source.rust.json +522 -125
  27. data/grammars/source.sdbl.json +2 -2
  28. data/grammars/source.shell.json +125 -161
  29. data/grammars/source.solidity.json +137 -0
  30. data/grammars/source.ts.json +385 -137
  31. data/grammars/source.tsx.json +394 -167
  32. data/grammars/source.yaml.json +176 -171
  33. data/grammars/text.html.php.blade.json +2 -2
  34. data/grammars/text.tex.latex.haskell.json +1 -10
  35. data/lib/linguist/generated.rb +50 -4
  36. data/lib/linguist/heuristics.rb +1 -1
  37. data/lib/linguist/language.rb +12 -8
  38. data/lib/linguist/languages.json +1 -1
  39. data/lib/linguist/languages.yml +38 -1
  40. data/lib/linguist/samples.json +4605 -581
  41. data/lib/linguist/vendor.yml +6 -0
  42. data/lib/linguist/version.rb +1 -1
  43. metadata +10 -7
  44. data/grammars/source.hy.json +0 -270
@@ -13,7 +13,8 @@
13
13
  "sconstruct",
14
14
  "SConscript",
15
15
  "gyp",
16
- "gypi"
16
+ "gypi",
17
+ "wsgi"
17
18
  ],
18
19
  "first_line_match": "^#!/.*\\bpython[\\d\\.]*\\b",
19
20
  "firstLineMatch": "^#!/.*\\bpython[\\d\\.]*\\b",
@@ -27,6 +28,10 @@
27
28
  }
28
29
  ],
29
30
  "repository": {
31
+ "impossible": {
32
+ "comment": "This is a special rule that should be used where no match is desired. It is not a good idea to match something like '1{0}' because in some cases that can result in infinite loops in token generation. So the rule instead matches and impossible expression to allow a match to fail and move to the next token.",
33
+ "match": "$.^"
34
+ },
30
35
  "statement": {
31
36
  "patterns": [
32
37
  {
@@ -413,7 +418,7 @@
413
418
  },
414
419
  "special-names": {
415
420
  "name": "constant.other.caps.python",
416
- "match": "(?x)\n \\b\n (\n _* [[:upper:]]\n )\n [[:upper:]\\d]* (_\\w*)?\n \\b\n"
421
+ "match": "(?x)\n \\b\n (\n _* [[:upper:]]{2}\n )\n [[:upper:]\\d]* (_\\w*)?\n \\b\n"
417
422
  },
418
423
  "curly-braces": {
419
424
  "begin": "\\{",
@@ -535,7 +540,7 @@
535
540
  "punctuation": {
536
541
  "patterns": [
537
542
  {
538
- "name": "punctuation.separator.block.begin.python",
543
+ "name": "punctuation.separator.colon.python",
539
544
  "match": ":"
540
545
  },
541
546
  {
@@ -818,6 +823,13 @@
818
823
  }
819
824
  ]
820
825
  },
826
+ "fstring-illegal-multi-brace": {
827
+ "patterns": [
828
+ {
829
+ "include": "#impossible"
830
+ }
831
+ ]
832
+ },
821
833
  "f-expression": {
822
834
  "comment": "All valid Python expressions, except comments and line cont",
823
835
  "patterns": [
@@ -1012,18 +1024,41 @@
1012
1024
  "name": "keyword.operator.assignment.python",
1013
1025
  "match": "=(?!=)"
1014
1026
  },
1015
- {
1016
- "include": "#expression-class"
1017
- },
1018
1027
  {
1019
1028
  "name": "support.type.metaclass.python",
1020
1029
  "match": "\\bmetaclass\\b"
1021
1030
  },
1031
+ {
1032
+ "include": "#illegal-names"
1033
+ },
1034
+ {
1035
+ "include": "#class-kwarg"
1036
+ },
1037
+ {
1038
+ "include": "#call-wrapper-inheritance"
1039
+ },
1040
+ {
1041
+ "include": "#expression-base"
1042
+ },
1043
+ {
1044
+ "include": "#member-access-class"
1045
+ },
1022
1046
  {
1023
1047
  "include": "#inheritance-identifier"
1024
1048
  }
1025
1049
  ]
1026
1050
  },
1051
+ "class-kwarg": {
1052
+ "match": "(?x)\n \\b ([[:alpha:]_]\\w*) \\s*(=)(?!=)\n",
1053
+ "captures": {
1054
+ "1": {
1055
+ "name": "entity.other.inherited-class.python variable.parameter.class.python"
1056
+ },
1057
+ "2": {
1058
+ "name": "keyword.operator.assignment.python"
1059
+ }
1060
+ }
1061
+ },
1027
1062
  "inheritance-identifier": {
1028
1063
  "match": "(?x)\n \\b ([[:alpha:]_]\\w*) \\b\n",
1029
1064
  "captures": {
@@ -1032,19 +1067,6 @@
1032
1067
  }
1033
1068
  }
1034
1069
  },
1035
- "expression-class": {
1036
- "patterns": [
1037
- {
1038
- "include": "#call-wrapper-inheritance"
1039
- },
1040
- {
1041
- "include": "#expression-base"
1042
- },
1043
- {
1044
- "include": "#member-access-class"
1045
- }
1046
- ]
1047
- },
1048
1070
  "member-access-class": {
1049
1071
  "begin": "\\.\\s*(?!\\.)",
1050
1072
  "end": "(?<=\\S)(?=\\W)|$",
@@ -1455,7 +1477,7 @@
1455
1477
  ]
1456
1478
  },
1457
1479
  "call-wrapper-inheritance": {
1458
- "comment": "same as a funciton call, but in inheritance context",
1480
+ "comment": "same as a function call, but in inheritance context",
1459
1481
  "name": "meta.function-call.python",
1460
1482
  "begin": "(?x)\n \\b(?=\n ([[:alpha:]_]\\w*) \\s* (\\()\n )\n",
1461
1483
  "end": "(\\))",
@@ -1611,7 +1633,7 @@
1611
1633
  },
1612
1634
  "builtin-exceptions": {
1613
1635
  "name": "support.type.exception.python",
1614
- "match": "(?x) (?<!\\.) \\b(\n (\n Arithmetic | Assertion | Attribute | Buffer | BlockingIO\n | BrokenPipe | ChildProcess\n | (Connection (Aborted | Refused | Reset)?)\n | EOF | Environment | FileExists | FileNotFound\n | FloatingPoint | IO | Import | Indentation | Index | Interrupted\n | IsADirectory | NotADirectory | Permission | ProcessLookup\n | Timeout\n | Key | Lookup | Memory | Name | NotImplemented | OS | Overflow\n | Reference | Runtime | Recursion | Syntax | System\n | Tab | Type | UnboundLocal | Unicode(Encode|Decode|Translate)?\n | Value | Windows | ZeroDivision\n ) Error\n|\n ((Pending)?Deprecation | Runtime | Syntax | User | Future | Import\n | Unicode | Bytes | Resource\n )? Warning\n|\n SystemExit | Stop(Async)?Iteration\n | KeyboardInterrupt\n | GeneratorExit | (Base)?Exception\n)\\b\n"
1636
+ "match": "(?x) (?<!\\.) \\b(\n (\n Arithmetic | Assertion | Attribute | Buffer | BlockingIO\n | BrokenPipe | ChildProcess\n | (Connection (Aborted | Refused | Reset)?)\n | EOF | Environment | FileExists | FileNotFound\n | FloatingPoint | IO | Import | Indentation | Index | Interrupted\n | IsADirectory | NotADirectory | Permission | ProcessLookup\n | Timeout\n | Key | Lookup | Memory | Name | NotImplemented | OS | Overflow\n | Reference | Runtime | Recursion | Syntax | System\n | Tab | Type | UnboundLocal | Unicode(Encode|Decode|Translate)?\n | Value | Windows | ZeroDivision | ModuleNotFound\n ) Error\n|\n ((Pending)?Deprecation | Runtime | Syntax | User | Future | Import\n | Unicode | Bytes | Resource\n )? Warning\n|\n SystemExit | Stop(Async)?Iteration\n | KeyboardInterrupt\n | GeneratorExit | (Base)?Exception\n)\\b\n"
1615
1637
  },
1616
1638
  "builtin-functions": {
1617
1639
  "patterns": [
@@ -1631,7 +1653,7 @@
1631
1653
  },
1632
1654
  "magic-function-names": {
1633
1655
  "comment": "these methods have magic interpretation by python and are generally called\nindirectly through syntactic constructs\n",
1634
- "match": "(?x)\n \\b(\n __(?:\n abs | add | aenter | aexit | aiter | and | anext | await\n | bool | call | ceil | cmp | coerce | complex | contains\n | copy | deepcopy | del | delattr | delete | delitem\n | delslice | dir | div | divmod | enter | eq | exit | float\n | floor | floordiv | format | ge | get | getattr\n | getattribute | getinitargs | getitem | getnewargs\n | getslice | getstate | gt | hash | hex | iadd | iand | idiv\n | ifloordiv | ilshift | imod | imul | index | init\n | instancecheck | int | invert | ior | ipow | irshift | isub\n | iter | itruediv | ixor | le | len | long | lshift | lt\n | missing | mod | mul | ne | neg | new | next | nonzero | oct | or\n | pos | pow | radd | rand | rdiv | rdivmod | reduce\n | reduce_ex | repr | reversed | rfloordiv | rlshift | rmod\n | rmul | ror | round | rpow | rrshift | rshift | rsub\n | rtruediv | rxor | set | setattr | setitem | setslice\n | setstate | sizeof | str | sub | subclasscheck | truediv\n | trunc | unicode | xor\n )__\n )\\b\n",
1656
+ "match": "(?x)\n \\b(\n __(?:\n abs | add | aenter | aexit | aiter | and | anext | await\n | bool | call | ceil | cmp | coerce | complex | contains\n | copy | deepcopy | del | delattr | delete | delitem\n | delslice | dir | div | divmod | enter | eq | exit | float\n | floor | floordiv | format | ge | get | getattr\n | getattribute | getinitargs | getitem | getnewargs\n | getslice | getstate | gt | hash | hex | iadd | iand | idiv\n | ifloordiv | ilshift | imod | imul | index | init\n | instancecheck | int | invert | ior | ipow | irshift | isub\n | iter | itruediv | ixor | le | len | long | lshift | lt\n | missing | mod | mul | ne | neg | new | next | nonzero | oct | or\n | pos | pow | radd | rand | rdiv | rdivmod | reduce\n | reduce_ex | repr | reversed | rfloordiv | rlshift | rmod\n | rmul | ror | round | rpow | rrshift | rshift | rsub\n | rtruediv | rxor | set | setattr | setitem | setslice\n | setstate | sizeof | str | sub | subclasscheck | truediv\n | trunc | unicode | xor | matmul | rmatmul | imatmul\n | init_subclass | set_name | fspath | bytes | prepare\n )__\n )\\b\n",
1635
1657
  "captures": {
1636
1658
  "1": {
1637
1659
  "name": "support.function.magic.python"
@@ -1640,7 +1662,7 @@
1640
1662
  },
1641
1663
  "magic-variable-names": {
1642
1664
  "comment": "magic variables which a class/module may have.",
1643
- "match": "(?x)\n \\b(\n __(?:\n all | bases | builtins | class | code | debug | defaults | dict\n | doc | file | func | kwdefaults | members\n | metaclass | methods | module | mro | name\n | qualname | self | signature | slots | subclasses\n | version | weakref | wrapped\n )__\n )\\b\n",
1665
+ "match": "(?x)\n \\b(\n __(?:\n all | bases | builtins | class | code | debug | defaults | dict\n | doc | file | func | kwdefaults | members\n | metaclass | methods | module | mro | name\n | qualname | self | signature | slots | subclasses\n | version | weakref | wrapped | annotations | classcell\n | spec | path | package | future\n )__\n )\\b\n",
1644
1666
  "captures": {
1645
1667
  "1": {
1646
1668
  "name": "support.variable.magic.python"
@@ -0,0 +1,2170 @@
1
+ {
2
+ "scopeName": "source.quoting.perl6fe",
3
+ "name": "Quoting (Perl 6)",
4
+ "fileTypes": [
5
+
6
+ ],
7
+ "patterns": [
8
+ {
9
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\(\\(\\()",
10
+ "beginCaptures": {
11
+ "1": {
12
+ "name": "string.quoted.q.operator.perl6fe"
13
+ },
14
+ "2": {
15
+ "name": "support.function.quote.adverb.perl6fe"
16
+ },
17
+ "3": {
18
+ "name": "punctuation.definition.string.perl6fe"
19
+ }
20
+ },
21
+ "end": "\\)\\)\\)",
22
+ "endCaptures": {
23
+ "0": {
24
+ "name": "punctuation.definition.string.perl6fe"
25
+ }
26
+ },
27
+ "contentName": "string.quoted.q.triple_paren.quote.perl6fe",
28
+ "patterns": [
29
+ {
30
+ "include": "#q_triple_paren_string_content"
31
+ }
32
+ ]
33
+ },
34
+ {
35
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\(\\(\\()",
36
+ "beginCaptures": {
37
+ "1": {
38
+ "name": "string.quoted.q.operator.perl6fe"
39
+ },
40
+ "2": {
41
+ "name": "support.function.quote.adverb.perl6fe"
42
+ },
43
+ "3": {
44
+ "name": "punctuation.definition.string.perl6fe"
45
+ }
46
+ },
47
+ "end": "\\\\\\\\\\)\\)\\)|(?<!\\\\)\\)\\)\\)",
48
+ "endCaptures": {
49
+ "0": {
50
+ "name": "punctuation.definition.string.perl6fe"
51
+ }
52
+ },
53
+ "contentName": "string.quoted.q.triple_paren.quote.perl6fe",
54
+ "patterns": [
55
+ {
56
+ "match": "\\\\\\(\\(\\(|\\\\\\)\\)\\)",
57
+ "name": "constant.character.escape.perl6fe"
58
+ },
59
+ {
60
+ "include": "#q_triple_paren_string_content"
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\(\\(\\()",
66
+ "beginCaptures": {
67
+ "1": {
68
+ "name": "string.quoted.qq.operator.perl6fe"
69
+ },
70
+ "2": {
71
+ "name": "support.function.quote.adverb.perl6fe"
72
+ },
73
+ "3": {
74
+ "name": "punctuation.definition.string.perl6fe"
75
+ }
76
+ },
77
+ "end": "\\\\\\\\\\)\\)\\)|(?<!\\\\)\\)\\)\\)",
78
+ "endCaptures": {
79
+ "0": {
80
+ "name": "punctuation.definition.string.perl6fe"
81
+ }
82
+ },
83
+ "contentName": "string.quoted.qq.triple_paren.quote.perl6fe",
84
+ "patterns": [
85
+ {
86
+ "match": "\\\\\\(\\(\\(|\\\\\\)\\)\\)",
87
+ "name": "constant.character.escape.perl6fe"
88
+ },
89
+ {
90
+ "include": "#qq_character_escape"
91
+ },
92
+ {
93
+ "include": "source.perl6fe#interpolation"
94
+ },
95
+ {
96
+ "include": "#q_triple_paren_string_content"
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\[\\[\\[)",
102
+ "beginCaptures": {
103
+ "1": {
104
+ "name": "string.quoted.q.operator.perl6fe"
105
+ },
106
+ "2": {
107
+ "name": "support.function.quote.adverb.perl6fe"
108
+ },
109
+ "3": {
110
+ "name": "punctuation.definition.string.perl6fe"
111
+ }
112
+ },
113
+ "end": "\\]\\]\\]",
114
+ "endCaptures": {
115
+ "0": {
116
+ "name": "punctuation.definition.string.perl6fe"
117
+ }
118
+ },
119
+ "contentName": "string.quoted.q.triple_bracket.quote.perl6fe",
120
+ "patterns": [
121
+ {
122
+ "include": "#q_triple_bracket_string_content"
123
+ }
124
+ ]
125
+ },
126
+ {
127
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\[\\[\\[)",
128
+ "beginCaptures": {
129
+ "1": {
130
+ "name": "string.quoted.q.operator.perl6fe"
131
+ },
132
+ "2": {
133
+ "name": "support.function.quote.adverb.perl6fe"
134
+ },
135
+ "3": {
136
+ "name": "punctuation.definition.string.perl6fe"
137
+ }
138
+ },
139
+ "end": "\\\\\\\\\\]\\]\\]|(?<!\\\\)\\]\\]\\]",
140
+ "endCaptures": {
141
+ "0": {
142
+ "name": "punctuation.definition.string.perl6fe"
143
+ }
144
+ },
145
+ "contentName": "string.quoted.q.triple_bracket.quote.perl6fe",
146
+ "patterns": [
147
+ {
148
+ "match": "\\\\\\[\\[\\[|\\\\\\]\\]\\]",
149
+ "name": "constant.character.escape.perl6fe"
150
+ },
151
+ {
152
+ "include": "#q_triple_bracket_string_content"
153
+ }
154
+ ]
155
+ },
156
+ {
157
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\[\\[\\[)",
158
+ "beginCaptures": {
159
+ "1": {
160
+ "name": "string.quoted.qq.operator.perl6fe"
161
+ },
162
+ "2": {
163
+ "name": "support.function.quote.adverb.perl6fe"
164
+ },
165
+ "3": {
166
+ "name": "punctuation.definition.string.perl6fe"
167
+ }
168
+ },
169
+ "end": "\\\\\\\\\\]\\]\\]|(?<!\\\\)\\]\\]\\]",
170
+ "endCaptures": {
171
+ "0": {
172
+ "name": "punctuation.definition.string.perl6fe"
173
+ }
174
+ },
175
+ "contentName": "string.quoted.qq.triple_bracket.quote.perl6fe",
176
+ "patterns": [
177
+ {
178
+ "match": "\\\\\\[\\[\\[|\\\\\\]\\]\\]",
179
+ "name": "constant.character.escape.perl6fe"
180
+ },
181
+ {
182
+ "include": "#qq_character_escape"
183
+ },
184
+ {
185
+ "include": "source.perl6fe#interpolation"
186
+ },
187
+ {
188
+ "include": "#q_triple_bracket_string_content"
189
+ }
190
+ ]
191
+ },
192
+ {
193
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\{\\{\\{)",
194
+ "beginCaptures": {
195
+ "1": {
196
+ "name": "string.quoted.q.operator.perl6fe"
197
+ },
198
+ "2": {
199
+ "name": "support.function.quote.adverb.perl6fe"
200
+ },
201
+ "3": {
202
+ "name": "punctuation.definition.string.perl6fe"
203
+ }
204
+ },
205
+ "end": "\\}\\}\\}",
206
+ "endCaptures": {
207
+ "0": {
208
+ "name": "punctuation.definition.string.perl6fe"
209
+ }
210
+ },
211
+ "contentName": "string.quoted.q.triple_brace.quote.perl6fe",
212
+ "patterns": [
213
+ {
214
+ "include": "#q_triple_brace_string_content"
215
+ }
216
+ ]
217
+ },
218
+ {
219
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\{\\{\\{)",
220
+ "beginCaptures": {
221
+ "1": {
222
+ "name": "string.quoted.q.operator.perl6fe"
223
+ },
224
+ "2": {
225
+ "name": "support.function.quote.adverb.perl6fe"
226
+ },
227
+ "3": {
228
+ "name": "punctuation.definition.string.perl6fe"
229
+ }
230
+ },
231
+ "end": "\\\\\\\\\\}\\}\\}|(?<!\\\\)\\}\\}\\}",
232
+ "endCaptures": {
233
+ "0": {
234
+ "name": "punctuation.definition.string.perl6fe"
235
+ }
236
+ },
237
+ "contentName": "string.quoted.q.triple_brace.quote.perl6fe",
238
+ "patterns": [
239
+ {
240
+ "match": "\\\\\\{\\{\\{|\\\\\\}\\}\\}",
241
+ "name": "constant.character.escape.perl6fe"
242
+ },
243
+ {
244
+ "include": "#q_triple_brace_string_content"
245
+ }
246
+ ]
247
+ },
248
+ {
249
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\{\\{\\{)",
250
+ "beginCaptures": {
251
+ "1": {
252
+ "name": "string.quoted.qq.operator.perl6fe"
253
+ },
254
+ "2": {
255
+ "name": "support.function.quote.adverb.perl6fe"
256
+ },
257
+ "3": {
258
+ "name": "punctuation.definition.string.perl6fe"
259
+ }
260
+ },
261
+ "end": "\\\\\\\\\\}\\}\\}|(?<!\\\\)\\}\\}\\}",
262
+ "endCaptures": {
263
+ "0": {
264
+ "name": "punctuation.definition.string.perl6fe"
265
+ }
266
+ },
267
+ "contentName": "string.quoted.qq.triple_brace.quote.perl6fe",
268
+ "patterns": [
269
+ {
270
+ "match": "\\\\\\{\\{\\{|\\\\\\}\\}\\}",
271
+ "name": "constant.character.escape.perl6fe"
272
+ },
273
+ {
274
+ "include": "#qq_character_escape"
275
+ },
276
+ {
277
+ "include": "source.perl6fe#interpolation"
278
+ },
279
+ {
280
+ "include": "#q_triple_brace_string_content"
281
+ }
282
+ ]
283
+ },
284
+ {
285
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(<<<)",
286
+ "beginCaptures": {
287
+ "1": {
288
+ "name": "string.quoted.q.operator.perl6fe"
289
+ },
290
+ "2": {
291
+ "name": "support.function.quote.adverb.perl6fe"
292
+ },
293
+ "3": {
294
+ "name": "punctuation.definition.string.perl6fe"
295
+ }
296
+ },
297
+ "end": ">>>",
298
+ "endCaptures": {
299
+ "0": {
300
+ "name": "punctuation.definition.string.perl6fe"
301
+ }
302
+ },
303
+ "contentName": "string.quoted.q.triple_angle.quote.perl6fe",
304
+ "patterns": [
305
+ {
306
+ "include": "#q_triple_angle_string_content"
307
+ }
308
+ ]
309
+ },
310
+ {
311
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(<<<)",
312
+ "beginCaptures": {
313
+ "1": {
314
+ "name": "string.quoted.q.operator.perl6fe"
315
+ },
316
+ "2": {
317
+ "name": "support.function.quote.adverb.perl6fe"
318
+ },
319
+ "3": {
320
+ "name": "punctuation.definition.string.perl6fe"
321
+ }
322
+ },
323
+ "end": "\\\\\\\\>>>|(?<!\\\\)>>>",
324
+ "endCaptures": {
325
+ "0": {
326
+ "name": "punctuation.definition.string.perl6fe"
327
+ }
328
+ },
329
+ "contentName": "string.quoted.q.triple_angle.quote.perl6fe",
330
+ "patterns": [
331
+ {
332
+ "match": "\\\\<<<|\\\\>>>",
333
+ "name": "constant.character.escape.perl6fe"
334
+ },
335
+ {
336
+ "include": "#q_triple_angle_string_content"
337
+ }
338
+ ]
339
+ },
340
+ {
341
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(<<<)",
342
+ "beginCaptures": {
343
+ "1": {
344
+ "name": "string.quoted.qq.operator.perl6fe"
345
+ },
346
+ "2": {
347
+ "name": "support.function.quote.adverb.perl6fe"
348
+ },
349
+ "3": {
350
+ "name": "punctuation.definition.string.perl6fe"
351
+ }
352
+ },
353
+ "end": "\\\\\\\\>>>|(?<!\\\\)>>>",
354
+ "endCaptures": {
355
+ "0": {
356
+ "name": "punctuation.definition.string.perl6fe"
357
+ }
358
+ },
359
+ "contentName": "string.quoted.qq.triple_angle.quote.perl6fe",
360
+ "patterns": [
361
+ {
362
+ "match": "\\\\<<<|\\\\>>>",
363
+ "name": "constant.character.escape.perl6fe"
364
+ },
365
+ {
366
+ "include": "#qq_character_escape"
367
+ },
368
+ {
369
+ "include": "source.perl6fe#interpolation"
370
+ },
371
+ {
372
+ "include": "#q_triple_angle_string_content"
373
+ }
374
+ ]
375
+ },
376
+ {
377
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(<<)",
378
+ "beginCaptures": {
379
+ "1": {
380
+ "name": "string.quoted.q.operator.perl6fe"
381
+ },
382
+ "2": {
383
+ "name": "support.function.quote.adverb.perl6fe"
384
+ },
385
+ "3": {
386
+ "name": "punctuation.definition.string.perl6fe"
387
+ }
388
+ },
389
+ "end": ">>",
390
+ "endCaptures": {
391
+ "0": {
392
+ "name": "punctuation.definition.string.perl6fe"
393
+ }
394
+ },
395
+ "contentName": "string.quoted.q.double_angle.quote.perl6fe",
396
+ "patterns": [
397
+ {
398
+ "include": "#q_double_angle_string_content"
399
+ }
400
+ ]
401
+ },
402
+ {
403
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(<<)",
404
+ "beginCaptures": {
405
+ "1": {
406
+ "name": "string.quoted.q.operator.perl6fe"
407
+ },
408
+ "2": {
409
+ "name": "support.function.quote.adverb.perl6fe"
410
+ },
411
+ "3": {
412
+ "name": "punctuation.definition.string.perl6fe"
413
+ }
414
+ },
415
+ "end": "\\\\\\\\>>|(?<!\\\\)>>",
416
+ "endCaptures": {
417
+ "0": {
418
+ "name": "punctuation.definition.string.perl6fe"
419
+ }
420
+ },
421
+ "contentName": "string.quoted.q.double_angle.quote.perl6fe",
422
+ "patterns": [
423
+ {
424
+ "match": "\\\\<<|\\\\>>",
425
+ "name": "constant.character.escape.perl6fe"
426
+ },
427
+ {
428
+ "include": "#q_double_angle_string_content"
429
+ }
430
+ ]
431
+ },
432
+ {
433
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(<<)",
434
+ "beginCaptures": {
435
+ "1": {
436
+ "name": "string.quoted.qq.operator.perl6fe"
437
+ },
438
+ "2": {
439
+ "name": "support.function.quote.adverb.perl6fe"
440
+ },
441
+ "3": {
442
+ "name": "punctuation.definition.string.perl6fe"
443
+ }
444
+ },
445
+ "end": "\\\\\\\\>>|(?<!\\\\)>>",
446
+ "endCaptures": {
447
+ "0": {
448
+ "name": "punctuation.definition.string.perl6fe"
449
+ }
450
+ },
451
+ "contentName": "string.quoted.qq.double_angle.quote.perl6fe",
452
+ "patterns": [
453
+ {
454
+ "match": "\\\\<<|\\\\>>",
455
+ "name": "constant.character.escape.perl6fe"
456
+ },
457
+ {
458
+ "include": "#qq_character_escape"
459
+ },
460
+ {
461
+ "include": "source.perl6fe#interpolation"
462
+ },
463
+ {
464
+ "include": "#q_double_angle_string_content"
465
+ }
466
+ ]
467
+ },
468
+ {
469
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\(\\()",
470
+ "beginCaptures": {
471
+ "1": {
472
+ "name": "string.quoted.q.operator.perl6fe"
473
+ },
474
+ "2": {
475
+ "name": "support.function.quote.adverb.perl6fe"
476
+ },
477
+ "3": {
478
+ "name": "punctuation.definition.string.perl6fe"
479
+ }
480
+ },
481
+ "end": "\\)\\)",
482
+ "endCaptures": {
483
+ "0": {
484
+ "name": "punctuation.definition.string.perl6fe"
485
+ }
486
+ },
487
+ "contentName": "string.quoted.q.double_paren.quote.perl6fe",
488
+ "patterns": [
489
+ {
490
+ "include": "#q_double_paren_string_content"
491
+ }
492
+ ]
493
+ },
494
+ {
495
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\(\\()",
496
+ "beginCaptures": {
497
+ "1": {
498
+ "name": "string.quoted.q.operator.perl6fe"
499
+ },
500
+ "2": {
501
+ "name": "support.function.quote.adverb.perl6fe"
502
+ },
503
+ "3": {
504
+ "name": "punctuation.definition.string.perl6fe"
505
+ }
506
+ },
507
+ "end": "\\\\\\\\\\)\\)|(?<!\\\\)\\)\\)",
508
+ "endCaptures": {
509
+ "0": {
510
+ "name": "punctuation.definition.string.perl6fe"
511
+ }
512
+ },
513
+ "contentName": "string.quoted.q.double_paren.quote.perl6fe",
514
+ "patterns": [
515
+ {
516
+ "match": "\\\\\\(\\(|\\\\\\)\\)",
517
+ "name": "constant.character.escape.perl6fe"
518
+ },
519
+ {
520
+ "include": "#q_double_paren_string_content"
521
+ }
522
+ ]
523
+ },
524
+ {
525
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\(\\()",
526
+ "beginCaptures": {
527
+ "1": {
528
+ "name": "string.quoted.qq.operator.perl6fe"
529
+ },
530
+ "2": {
531
+ "name": "support.function.quote.adverb.perl6fe"
532
+ },
533
+ "3": {
534
+ "name": "punctuation.definition.string.perl6fe"
535
+ }
536
+ },
537
+ "end": "\\\\\\\\\\)\\)|(?<!\\\\)\\)\\)",
538
+ "endCaptures": {
539
+ "0": {
540
+ "name": "punctuation.definition.string.perl6fe"
541
+ }
542
+ },
543
+ "contentName": "string.quoted.qq.double_paren.quote.perl6fe",
544
+ "patterns": [
545
+ {
546
+ "match": "\\\\\\(\\(|\\\\\\)\\)",
547
+ "name": "constant.character.escape.perl6fe"
548
+ },
549
+ {
550
+ "include": "#qq_character_escape"
551
+ },
552
+ {
553
+ "include": "source.perl6fe#interpolation"
554
+ },
555
+ {
556
+ "include": "#q_double_paren_string_content"
557
+ }
558
+ ]
559
+ },
560
+ {
561
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\[\\[)",
562
+ "beginCaptures": {
563
+ "1": {
564
+ "name": "string.quoted.q.operator.perl6fe"
565
+ },
566
+ "2": {
567
+ "name": "support.function.quote.adverb.perl6fe"
568
+ },
569
+ "3": {
570
+ "name": "punctuation.definition.string.perl6fe"
571
+ }
572
+ },
573
+ "end": "\\]\\]",
574
+ "endCaptures": {
575
+ "0": {
576
+ "name": "punctuation.definition.string.perl6fe"
577
+ }
578
+ },
579
+ "contentName": "string.quoted.q.double_bracket.quote.perl6fe",
580
+ "patterns": [
581
+ {
582
+ "include": "#q_double_bracket_string_content"
583
+ }
584
+ ]
585
+ },
586
+ {
587
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\[\\[)",
588
+ "beginCaptures": {
589
+ "1": {
590
+ "name": "string.quoted.q.operator.perl6fe"
591
+ },
592
+ "2": {
593
+ "name": "support.function.quote.adverb.perl6fe"
594
+ },
595
+ "3": {
596
+ "name": "punctuation.definition.string.perl6fe"
597
+ }
598
+ },
599
+ "end": "\\\\\\\\\\]\\]|(?<!\\\\)\\]\\]",
600
+ "endCaptures": {
601
+ "0": {
602
+ "name": "punctuation.definition.string.perl6fe"
603
+ }
604
+ },
605
+ "contentName": "string.quoted.q.double_bracket.quote.perl6fe",
606
+ "patterns": [
607
+ {
608
+ "match": "\\\\\\[\\[|\\\\\\]\\]",
609
+ "name": "constant.character.escape.perl6fe"
610
+ },
611
+ {
612
+ "include": "#q_double_bracket_string_content"
613
+ }
614
+ ]
615
+ },
616
+ {
617
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\[\\[)",
618
+ "beginCaptures": {
619
+ "1": {
620
+ "name": "string.quoted.qq.operator.perl6fe"
621
+ },
622
+ "2": {
623
+ "name": "support.function.quote.adverb.perl6fe"
624
+ },
625
+ "3": {
626
+ "name": "punctuation.definition.string.perl6fe"
627
+ }
628
+ },
629
+ "end": "\\\\\\\\\\]\\]|(?<!\\\\)\\]\\]",
630
+ "endCaptures": {
631
+ "0": {
632
+ "name": "punctuation.definition.string.perl6fe"
633
+ }
634
+ },
635
+ "contentName": "string.quoted.qq.double_bracket.quote.perl6fe",
636
+ "patterns": [
637
+ {
638
+ "match": "\\\\\\[\\[|\\\\\\]\\]",
639
+ "name": "constant.character.escape.perl6fe"
640
+ },
641
+ {
642
+ "include": "#qq_character_escape"
643
+ },
644
+ {
645
+ "include": "source.perl6fe#interpolation"
646
+ },
647
+ {
648
+ "include": "#q_double_bracket_string_content"
649
+ }
650
+ ]
651
+ },
652
+ {
653
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*({{)",
654
+ "beginCaptures": {
655
+ "1": {
656
+ "name": "string.quoted.q.operator.perl6fe"
657
+ },
658
+ "2": {
659
+ "name": "support.function.quote.adverb.perl6fe"
660
+ },
661
+ "3": {
662
+ "name": "punctuation.definition.string.perl6fe"
663
+ }
664
+ },
665
+ "end": "}}",
666
+ "endCaptures": {
667
+ "0": {
668
+ "name": "punctuation.definition.string.perl6fe"
669
+ }
670
+ },
671
+ "contentName": "string.quoted.q.double_brace.quote.perl6fe",
672
+ "patterns": [
673
+ {
674
+ "include": "#q_double_brace_string_content"
675
+ }
676
+ ]
677
+ },
678
+ {
679
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*({{)",
680
+ "beginCaptures": {
681
+ "1": {
682
+ "name": "string.quoted.q.operator.perl6fe"
683
+ },
684
+ "2": {
685
+ "name": "support.function.quote.adverb.perl6fe"
686
+ },
687
+ "3": {
688
+ "name": "punctuation.definition.string.perl6fe"
689
+ }
690
+ },
691
+ "end": "\\\\\\\\}}|(?<!\\\\)}}",
692
+ "endCaptures": {
693
+ "0": {
694
+ "name": "punctuation.definition.string.perl6fe"
695
+ }
696
+ },
697
+ "contentName": "string.quoted.q.double_brace.quote.perl6fe",
698
+ "patterns": [
699
+ {
700
+ "match": "\\\\{{|\\\\}}",
701
+ "name": "constant.character.escape.perl6fe"
702
+ },
703
+ {
704
+ "include": "#q_double_brace_string_content"
705
+ }
706
+ ]
707
+ },
708
+ {
709
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*({{)",
710
+ "beginCaptures": {
711
+ "1": {
712
+ "name": "string.quoted.qq.operator.perl6fe"
713
+ },
714
+ "2": {
715
+ "name": "support.function.quote.adverb.perl6fe"
716
+ },
717
+ "3": {
718
+ "name": "punctuation.definition.string.perl6fe"
719
+ }
720
+ },
721
+ "end": "\\\\\\\\}}|(?<!\\\\)}}",
722
+ "endCaptures": {
723
+ "0": {
724
+ "name": "punctuation.definition.string.perl6fe"
725
+ }
726
+ },
727
+ "contentName": "string.quoted.qq.double_brace.quote.perl6fe",
728
+ "patterns": [
729
+ {
730
+ "match": "\\\\{{|\\\\}}",
731
+ "name": "constant.character.escape.perl6fe"
732
+ },
733
+ {
734
+ "include": "#qq_character_escape"
735
+ },
736
+ {
737
+ "include": "source.perl6fe#interpolation"
738
+ },
739
+ {
740
+ "include": "#q_double_brace_string_content"
741
+ }
742
+ ]
743
+ },
744
+ {
745
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*({)",
746
+ "beginCaptures": {
747
+ "1": {
748
+ "name": "string.quoted.q.operator.perl6fe"
749
+ },
750
+ "2": {
751
+ "name": "support.function.quote.adverb.perl6fe"
752
+ },
753
+ "3": {
754
+ "name": "punctuation.definition.string.perl6fe"
755
+ }
756
+ },
757
+ "end": "}",
758
+ "endCaptures": {
759
+ "0": {
760
+ "name": "punctuation.definition.string.perl6fe"
761
+ }
762
+ },
763
+ "contentName": "string.quoted.q.brace.quote.perl6fe",
764
+ "patterns": [
765
+ {
766
+ "include": "#q_brace_string_content"
767
+ }
768
+ ]
769
+ },
770
+ {
771
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*({)",
772
+ "beginCaptures": {
773
+ "1": {
774
+ "name": "string.quoted.q.operator.perl6fe"
775
+ },
776
+ "2": {
777
+ "name": "support.function.quote.adverb.perl6fe"
778
+ },
779
+ "3": {
780
+ "name": "punctuation.definition.string.perl6fe"
781
+ }
782
+ },
783
+ "end": "\\\\\\\\}|(?<!\\\\)}",
784
+ "endCaptures": {
785
+ "0": {
786
+ "name": "punctuation.definition.string.perl6fe"
787
+ }
788
+ },
789
+ "contentName": "string.quoted.q.brace.quote.perl6fe",
790
+ "patterns": [
791
+ {
792
+ "match": "\\\\{|\\\\}",
793
+ "name": "constant.character.escape.perl6fe"
794
+ },
795
+ {
796
+ "include": "#q_brace_string_content"
797
+ }
798
+ ]
799
+ },
800
+ {
801
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*({)",
802
+ "beginCaptures": {
803
+ "1": {
804
+ "name": "string.quoted.qq.operator.perl6fe"
805
+ },
806
+ "2": {
807
+ "name": "support.function.quote.adverb.perl6fe"
808
+ },
809
+ "3": {
810
+ "name": "punctuation.definition.string.perl6fe"
811
+ }
812
+ },
813
+ "end": "\\\\\\\\}|(?<!\\\\)}",
814
+ "endCaptures": {
815
+ "0": {
816
+ "name": "punctuation.definition.string.perl6fe"
817
+ }
818
+ },
819
+ "contentName": "string.quoted.qq.brace.quote.perl6fe",
820
+ "patterns": [
821
+ {
822
+ "match": "\\\\{|\\\\}",
823
+ "name": "constant.character.escape.perl6fe"
824
+ },
825
+ {
826
+ "include": "#qq_character_escape"
827
+ },
828
+ {
829
+ "include": "source.perl6fe#interpolation"
830
+ },
831
+ {
832
+ "include": "#q_brace_string_content"
833
+ }
834
+ ]
835
+ },
836
+ {
837
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(<)",
838
+ "beginCaptures": {
839
+ "1": {
840
+ "name": "string.quoted.q.operator.perl6fe"
841
+ },
842
+ "2": {
843
+ "name": "support.function.quote.adverb.perl6fe"
844
+ },
845
+ "3": {
846
+ "name": "punctuation.definition.string.perl6fe"
847
+ }
848
+ },
849
+ "end": ">",
850
+ "endCaptures": {
851
+ "0": {
852
+ "name": "punctuation.definition.string.perl6fe"
853
+ }
854
+ },
855
+ "contentName": "string.quoted.q.angle.quote.perl6fe",
856
+ "patterns": [
857
+ {
858
+ "include": "#q_angle_string_content"
859
+ }
860
+ ]
861
+ },
862
+ {
863
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(<)",
864
+ "beginCaptures": {
865
+ "1": {
866
+ "name": "string.quoted.q.operator.perl6fe"
867
+ },
868
+ "2": {
869
+ "name": "support.function.quote.adverb.perl6fe"
870
+ },
871
+ "3": {
872
+ "name": "punctuation.definition.string.perl6fe"
873
+ }
874
+ },
875
+ "end": "\\\\\\\\>|(?<!\\\\)>",
876
+ "endCaptures": {
877
+ "0": {
878
+ "name": "punctuation.definition.string.perl6fe"
879
+ }
880
+ },
881
+ "contentName": "string.quoted.q.angle.quote.perl6fe",
882
+ "patterns": [
883
+ {
884
+ "match": "\\\\<|\\\\>",
885
+ "name": "constant.character.escape.perl6fe"
886
+ },
887
+ {
888
+ "include": "#q_angle_string_content"
889
+ }
890
+ ]
891
+ },
892
+ {
893
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(<)",
894
+ "beginCaptures": {
895
+ "1": {
896
+ "name": "string.quoted.qq.operator.perl6fe"
897
+ },
898
+ "2": {
899
+ "name": "support.function.quote.adverb.perl6fe"
900
+ },
901
+ "3": {
902
+ "name": "punctuation.definition.string.perl6fe"
903
+ }
904
+ },
905
+ "end": "\\\\\\\\>|(?<!\\\\)>",
906
+ "endCaptures": {
907
+ "0": {
908
+ "name": "punctuation.definition.string.perl6fe"
909
+ }
910
+ },
911
+ "contentName": "string.quoted.qq.angle.quote.perl6fe",
912
+ "patterns": [
913
+ {
914
+ "match": "\\\\<|\\\\>",
915
+ "name": "constant.character.escape.perl6fe"
916
+ },
917
+ {
918
+ "include": "#qq_character_escape"
919
+ },
920
+ {
921
+ "include": "source.perl6fe#interpolation"
922
+ },
923
+ {
924
+ "include": "#q_angle_string_content"
925
+ }
926
+ ]
927
+ },
928
+ {
929
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s+(\\()",
930
+ "beginCaptures": {
931
+ "1": {
932
+ "name": "string.quoted.q.operator.perl6fe"
933
+ },
934
+ "2": {
935
+ "name": "support.function.quote.adverb.perl6fe"
936
+ },
937
+ "3": {
938
+ "name": "punctuation.definition.string.perl6fe"
939
+ }
940
+ },
941
+ "end": "\\)",
942
+ "endCaptures": {
943
+ "0": {
944
+ "name": "punctuation.definition.string.perl6fe"
945
+ }
946
+ },
947
+ "contentName": "string.quoted.q.paren.quote.perl6fe",
948
+ "patterns": [
949
+ {
950
+ "include": "#q_paren_string_content"
951
+ }
952
+ ]
953
+ },
954
+ {
955
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s+(\\()",
956
+ "beginCaptures": {
957
+ "1": {
958
+ "name": "string.quoted.q.operator.perl6fe"
959
+ },
960
+ "2": {
961
+ "name": "support.function.quote.adverb.perl6fe"
962
+ },
963
+ "3": {
964
+ "name": "punctuation.definition.string.perl6fe"
965
+ }
966
+ },
967
+ "end": "\\\\\\\\\\)|(?<!\\\\)\\)",
968
+ "endCaptures": {
969
+ "0": {
970
+ "name": "punctuation.definition.string.perl6fe"
971
+ }
972
+ },
973
+ "contentName": "string.quoted.q.paren.quote.perl6fe",
974
+ "patterns": [
975
+ {
976
+ "match": "\\\\\\(|\\\\\\)",
977
+ "name": "constant.character.escape.perl6fe"
978
+ },
979
+ {
980
+ "include": "#q_paren_string_content"
981
+ }
982
+ ]
983
+ },
984
+ {
985
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s+(\\()",
986
+ "beginCaptures": {
987
+ "1": {
988
+ "name": "string.quoted.qq.operator.perl6fe"
989
+ },
990
+ "2": {
991
+ "name": "support.function.quote.adverb.perl6fe"
992
+ },
993
+ "3": {
994
+ "name": "punctuation.definition.string.perl6fe"
995
+ }
996
+ },
997
+ "end": "\\\\\\\\\\)|(?<!\\\\)\\)",
998
+ "endCaptures": {
999
+ "0": {
1000
+ "name": "punctuation.definition.string.perl6fe"
1001
+ }
1002
+ },
1003
+ "contentName": "string.quoted.qq.paren.quote.perl6fe",
1004
+ "patterns": [
1005
+ {
1006
+ "match": "\\\\\\(|\\\\\\)",
1007
+ "name": "constant.character.escape.perl6fe"
1008
+ },
1009
+ {
1010
+ "include": "#qq_character_escape"
1011
+ },
1012
+ {
1013
+ "include": "source.perl6fe#interpolation"
1014
+ },
1015
+ {
1016
+ "include": "#q_paren_string_content"
1017
+ }
1018
+ ]
1019
+ },
1020
+ {
1021
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\[)",
1022
+ "beginCaptures": {
1023
+ "1": {
1024
+ "name": "string.quoted.q.operator.perl6fe"
1025
+ },
1026
+ "2": {
1027
+ "name": "support.function.quote.adverb.perl6fe"
1028
+ },
1029
+ "3": {
1030
+ "name": "punctuation.definition.string.perl6fe"
1031
+ }
1032
+ },
1033
+ "end": "\\]",
1034
+ "endCaptures": {
1035
+ "0": {
1036
+ "name": "punctuation.definition.string.perl6fe"
1037
+ }
1038
+ },
1039
+ "contentName": "string.quoted.q.bracket.quote.perl6fe",
1040
+ "patterns": [
1041
+ {
1042
+ "include": "#q_bracket_string_content"
1043
+ }
1044
+ ]
1045
+ },
1046
+ {
1047
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\[)",
1048
+ "beginCaptures": {
1049
+ "1": {
1050
+ "name": "string.quoted.q.operator.perl6fe"
1051
+ },
1052
+ "2": {
1053
+ "name": "support.function.quote.adverb.perl6fe"
1054
+ },
1055
+ "3": {
1056
+ "name": "punctuation.definition.string.perl6fe"
1057
+ }
1058
+ },
1059
+ "end": "\\\\\\\\\\]|(?<!\\\\)\\]",
1060
+ "endCaptures": {
1061
+ "0": {
1062
+ "name": "punctuation.definition.string.perl6fe"
1063
+ }
1064
+ },
1065
+ "contentName": "string.quoted.q.bracket.quote.perl6fe",
1066
+ "patterns": [
1067
+ {
1068
+ "match": "\\\\\\[|\\\\\\]",
1069
+ "name": "constant.character.escape.perl6fe"
1070
+ },
1071
+ {
1072
+ "include": "#q_bracket_string_content"
1073
+ }
1074
+ ]
1075
+ },
1076
+ {
1077
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\\[)",
1078
+ "beginCaptures": {
1079
+ "1": {
1080
+ "name": "string.quoted.qq.operator.perl6fe"
1081
+ },
1082
+ "2": {
1083
+ "name": "support.function.quote.adverb.perl6fe"
1084
+ },
1085
+ "3": {
1086
+ "name": "punctuation.definition.string.perl6fe"
1087
+ }
1088
+ },
1089
+ "end": "\\\\\\\\\\]|(?<!\\\\)\\]",
1090
+ "endCaptures": {
1091
+ "0": {
1092
+ "name": "punctuation.definition.string.perl6fe"
1093
+ }
1094
+ },
1095
+ "contentName": "string.quoted.qq.bracket.quote.perl6fe",
1096
+ "patterns": [
1097
+ {
1098
+ "match": "\\\\\\[|\\\\\\]",
1099
+ "name": "constant.character.escape.perl6fe"
1100
+ },
1101
+ {
1102
+ "include": "#qq_character_escape"
1103
+ },
1104
+ {
1105
+ "include": "source.perl6fe#interpolation"
1106
+ },
1107
+ {
1108
+ "include": "#q_bracket_string_content"
1109
+ }
1110
+ ]
1111
+ },
1112
+ {
1113
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(“)",
1114
+ "beginCaptures": {
1115
+ "1": {
1116
+ "name": "string.quoted.q.operator.perl6fe"
1117
+ },
1118
+ "2": {
1119
+ "name": "support.function.quote.adverb.perl6fe"
1120
+ },
1121
+ "3": {
1122
+ "name": "punctuation.definition.string.perl6fe"
1123
+ }
1124
+ },
1125
+ "end": "”",
1126
+ "endCaptures": {
1127
+ "0": {
1128
+ "name": "punctuation.definition.string.perl6fe"
1129
+ }
1130
+ },
1131
+ "contentName": "string.quoted.q.left_double_right_double.quote.perl6fe",
1132
+ "patterns": [
1133
+ {
1134
+ "include": "#q_left_double_right_double_string_content"
1135
+ }
1136
+ ]
1137
+ },
1138
+ {
1139
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(“)",
1140
+ "beginCaptures": {
1141
+ "1": {
1142
+ "name": "string.quoted.q.operator.perl6fe"
1143
+ },
1144
+ "2": {
1145
+ "name": "support.function.quote.adverb.perl6fe"
1146
+ },
1147
+ "3": {
1148
+ "name": "punctuation.definition.string.perl6fe"
1149
+ }
1150
+ },
1151
+ "end": "\\\\\\\\”|(?<!\\\\)”",
1152
+ "endCaptures": {
1153
+ "0": {
1154
+ "name": "punctuation.definition.string.perl6fe"
1155
+ }
1156
+ },
1157
+ "contentName": "string.quoted.q.left_double_right_double.quote.perl6fe",
1158
+ "patterns": [
1159
+ {
1160
+ "match": "\\\\“|\\\\”",
1161
+ "name": "constant.character.escape.perl6fe"
1162
+ },
1163
+ {
1164
+ "include": "#q_left_double_right_double_string_content"
1165
+ }
1166
+ ]
1167
+ },
1168
+ {
1169
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(“)",
1170
+ "beginCaptures": {
1171
+ "1": {
1172
+ "name": "string.quoted.qq.operator.perl6fe"
1173
+ },
1174
+ "2": {
1175
+ "name": "support.function.quote.adverb.perl6fe"
1176
+ },
1177
+ "3": {
1178
+ "name": "punctuation.definition.string.perl6fe"
1179
+ }
1180
+ },
1181
+ "end": "\\\\\\\\”|(?<!\\\\)”",
1182
+ "endCaptures": {
1183
+ "0": {
1184
+ "name": "punctuation.definition.string.perl6fe"
1185
+ }
1186
+ },
1187
+ "contentName": "string.quoted.qq.left_double_right_double.quote.perl6fe",
1188
+ "patterns": [
1189
+ {
1190
+ "match": "\\\\“|\\\\”",
1191
+ "name": "constant.character.escape.perl6fe"
1192
+ },
1193
+ {
1194
+ "include": "#qq_character_escape"
1195
+ },
1196
+ {
1197
+ "include": "source.perl6fe#interpolation"
1198
+ },
1199
+ {
1200
+ "include": "#q_left_double_right_double_string_content"
1201
+ }
1202
+ ]
1203
+ },
1204
+ {
1205
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(‘)",
1206
+ "beginCaptures": {
1207
+ "1": {
1208
+ "name": "string.quoted.q.operator.perl6fe"
1209
+ },
1210
+ "2": {
1211
+ "name": "support.function.quote.adverb.perl6fe"
1212
+ },
1213
+ "3": {
1214
+ "name": "punctuation.definition.string.perl6fe"
1215
+ }
1216
+ },
1217
+ "end": "’",
1218
+ "endCaptures": {
1219
+ "0": {
1220
+ "name": "punctuation.definition.string.perl6fe"
1221
+ }
1222
+ },
1223
+ "contentName": "string.quoted.q.left_single_right_single.quote.perl6fe",
1224
+ "patterns": [
1225
+ {
1226
+ "include": "#q_left_single_right_single_string_content"
1227
+ }
1228
+ ]
1229
+ },
1230
+ {
1231
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(‘)",
1232
+ "beginCaptures": {
1233
+ "1": {
1234
+ "name": "string.quoted.q.operator.perl6fe"
1235
+ },
1236
+ "2": {
1237
+ "name": "support.function.quote.adverb.perl6fe"
1238
+ },
1239
+ "3": {
1240
+ "name": "punctuation.definition.string.perl6fe"
1241
+ }
1242
+ },
1243
+ "end": "\\\\\\\\’|(?<!\\\\)’",
1244
+ "endCaptures": {
1245
+ "0": {
1246
+ "name": "punctuation.definition.string.perl6fe"
1247
+ }
1248
+ },
1249
+ "contentName": "string.quoted.q.left_single_right_single.quote.perl6fe",
1250
+ "patterns": [
1251
+ {
1252
+ "match": "\\\\‘|\\\\’",
1253
+ "name": "constant.character.escape.perl6fe"
1254
+ },
1255
+ {
1256
+ "include": "#q_left_single_right_single_string_content"
1257
+ }
1258
+ ]
1259
+ },
1260
+ {
1261
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(‘)",
1262
+ "beginCaptures": {
1263
+ "1": {
1264
+ "name": "string.quoted.qq.operator.perl6fe"
1265
+ },
1266
+ "2": {
1267
+ "name": "support.function.quote.adverb.perl6fe"
1268
+ },
1269
+ "3": {
1270
+ "name": "punctuation.definition.string.perl6fe"
1271
+ }
1272
+ },
1273
+ "end": "\\\\\\\\’|(?<!\\\\)’",
1274
+ "endCaptures": {
1275
+ "0": {
1276
+ "name": "punctuation.definition.string.perl6fe"
1277
+ }
1278
+ },
1279
+ "contentName": "string.quoted.qq.left_single_right_single.quote.perl6fe",
1280
+ "patterns": [
1281
+ {
1282
+ "match": "\\\\‘|\\\\’",
1283
+ "name": "constant.character.escape.perl6fe"
1284
+ },
1285
+ {
1286
+ "include": "#qq_character_escape"
1287
+ },
1288
+ {
1289
+ "include": "source.perl6fe#interpolation"
1290
+ },
1291
+ {
1292
+ "include": "#q_left_single_right_single_string_content"
1293
+ }
1294
+ ]
1295
+ },
1296
+ {
1297
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(「)",
1298
+ "beginCaptures": {
1299
+ "1": {
1300
+ "name": "string.quoted.q.operator.perl6fe"
1301
+ },
1302
+ "2": {
1303
+ "name": "support.function.quote.adverb.perl6fe"
1304
+ },
1305
+ "3": {
1306
+ "name": "punctuation.definition.string.perl6fe"
1307
+ }
1308
+ },
1309
+ "end": "」",
1310
+ "endCaptures": {
1311
+ "0": {
1312
+ "name": "punctuation.definition.string.perl6fe"
1313
+ }
1314
+ },
1315
+ "contentName": "string.quoted.q.fw_cornerbracket.quote.perl6fe",
1316
+ "patterns": [
1317
+ {
1318
+ "include": "#q_fw_cornerbracket_string_content"
1319
+ }
1320
+ ]
1321
+ },
1322
+ {
1323
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(「)",
1324
+ "beginCaptures": {
1325
+ "1": {
1326
+ "name": "string.quoted.q.operator.perl6fe"
1327
+ },
1328
+ "2": {
1329
+ "name": "support.function.quote.adverb.perl6fe"
1330
+ },
1331
+ "3": {
1332
+ "name": "punctuation.definition.string.perl6fe"
1333
+ }
1334
+ },
1335
+ "end": "\\\\\\\\」|(?<!\\\\)」",
1336
+ "endCaptures": {
1337
+ "0": {
1338
+ "name": "punctuation.definition.string.perl6fe"
1339
+ }
1340
+ },
1341
+ "contentName": "string.quoted.q.fw_cornerbracket.quote.perl6fe",
1342
+ "patterns": [
1343
+ {
1344
+ "match": "\\\\「|\\\\」",
1345
+ "name": "constant.character.escape.perl6fe"
1346
+ },
1347
+ {
1348
+ "include": "#q_fw_cornerbracket_string_content"
1349
+ }
1350
+ ]
1351
+ },
1352
+ {
1353
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(「)",
1354
+ "beginCaptures": {
1355
+ "1": {
1356
+ "name": "string.quoted.qq.operator.perl6fe"
1357
+ },
1358
+ "2": {
1359
+ "name": "support.function.quote.adverb.perl6fe"
1360
+ },
1361
+ "3": {
1362
+ "name": "punctuation.definition.string.perl6fe"
1363
+ }
1364
+ },
1365
+ "end": "\\\\\\\\」|(?<!\\\\)」",
1366
+ "endCaptures": {
1367
+ "0": {
1368
+ "name": "punctuation.definition.string.perl6fe"
1369
+ }
1370
+ },
1371
+ "contentName": "string.quoted.qq.fw_cornerbracket.quote.perl6fe",
1372
+ "patterns": [
1373
+ {
1374
+ "match": "\\\\「|\\\\」",
1375
+ "name": "constant.character.escape.perl6fe"
1376
+ },
1377
+ {
1378
+ "include": "#qq_character_escape"
1379
+ },
1380
+ {
1381
+ "include": "source.perl6fe#interpolation"
1382
+ },
1383
+ {
1384
+ "include": "#q_fw_cornerbracket_string_content"
1385
+ }
1386
+ ]
1387
+ },
1388
+ {
1389
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(「)",
1390
+ "beginCaptures": {
1391
+ "1": {
1392
+ "name": "string.quoted.q.operator.perl6fe"
1393
+ },
1394
+ "2": {
1395
+ "name": "support.function.quote.adverb.perl6fe"
1396
+ },
1397
+ "3": {
1398
+ "name": "punctuation.definition.string.perl6fe"
1399
+ }
1400
+ },
1401
+ "end": "」",
1402
+ "endCaptures": {
1403
+ "0": {
1404
+ "name": "punctuation.definition.string.perl6fe"
1405
+ }
1406
+ },
1407
+ "contentName": "string.quoted.q.hw_cornerbracket.quote.perl6fe",
1408
+ "patterns": [
1409
+ {
1410
+ "include": "#q_hw_cornerbracket_string_content"
1411
+ }
1412
+ ]
1413
+ },
1414
+ {
1415
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(「)",
1416
+ "beginCaptures": {
1417
+ "1": {
1418
+ "name": "string.quoted.q.operator.perl6fe"
1419
+ },
1420
+ "2": {
1421
+ "name": "support.function.quote.adverb.perl6fe"
1422
+ },
1423
+ "3": {
1424
+ "name": "punctuation.definition.string.perl6fe"
1425
+ }
1426
+ },
1427
+ "end": "\\\\\\\\」|(?<!\\\\)」",
1428
+ "endCaptures": {
1429
+ "0": {
1430
+ "name": "punctuation.definition.string.perl6fe"
1431
+ }
1432
+ },
1433
+ "contentName": "string.quoted.q.hw_cornerbracket.quote.perl6fe",
1434
+ "patterns": [
1435
+ {
1436
+ "match": "\\\\「|\\\\」",
1437
+ "name": "constant.character.escape.perl6fe"
1438
+ },
1439
+ {
1440
+ "include": "#q_hw_cornerbracket_string_content"
1441
+ }
1442
+ ]
1443
+ },
1444
+ {
1445
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(「)",
1446
+ "beginCaptures": {
1447
+ "1": {
1448
+ "name": "string.quoted.qq.operator.perl6fe"
1449
+ },
1450
+ "2": {
1451
+ "name": "support.function.quote.adverb.perl6fe"
1452
+ },
1453
+ "3": {
1454
+ "name": "punctuation.definition.string.perl6fe"
1455
+ }
1456
+ },
1457
+ "end": "\\\\\\\\」|(?<!\\\\)」",
1458
+ "endCaptures": {
1459
+ "0": {
1460
+ "name": "punctuation.definition.string.perl6fe"
1461
+ }
1462
+ },
1463
+ "contentName": "string.quoted.qq.hw_cornerbracket.quote.perl6fe",
1464
+ "patterns": [
1465
+ {
1466
+ "match": "\\\\「|\\\\」",
1467
+ "name": "constant.character.escape.perl6fe"
1468
+ },
1469
+ {
1470
+ "include": "#qq_character_escape"
1471
+ },
1472
+ {
1473
+ "include": "source.perl6fe#interpolation"
1474
+ },
1475
+ {
1476
+ "include": "#q_hw_cornerbracket_string_content"
1477
+ }
1478
+ ]
1479
+ },
1480
+ {
1481
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(«)",
1482
+ "beginCaptures": {
1483
+ "1": {
1484
+ "name": "string.quoted.q.operator.perl6fe"
1485
+ },
1486
+ "2": {
1487
+ "name": "support.function.quote.adverb.perl6fe"
1488
+ },
1489
+ "3": {
1490
+ "name": "punctuation.definition.string.perl6fe"
1491
+ }
1492
+ },
1493
+ "end": "»",
1494
+ "endCaptures": {
1495
+ "0": {
1496
+ "name": "punctuation.definition.string.perl6fe"
1497
+ }
1498
+ },
1499
+ "contentName": "string.quoted.q.chevron.quote.perl6fe",
1500
+ "patterns": [
1501
+ {
1502
+ "include": "#q_chevron_string_content"
1503
+ }
1504
+ ]
1505
+ },
1506
+ {
1507
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(«)",
1508
+ "beginCaptures": {
1509
+ "1": {
1510
+ "name": "string.quoted.q.operator.perl6fe"
1511
+ },
1512
+ "2": {
1513
+ "name": "support.function.quote.adverb.perl6fe"
1514
+ },
1515
+ "3": {
1516
+ "name": "punctuation.definition.string.perl6fe"
1517
+ }
1518
+ },
1519
+ "end": "\\\\\\\\»|(?<!\\\\)»",
1520
+ "endCaptures": {
1521
+ "0": {
1522
+ "name": "punctuation.definition.string.perl6fe"
1523
+ }
1524
+ },
1525
+ "contentName": "string.quoted.q.chevron.quote.perl6fe",
1526
+ "patterns": [
1527
+ {
1528
+ "match": "\\\\«|\\\\»",
1529
+ "name": "constant.character.escape.perl6fe"
1530
+ },
1531
+ {
1532
+ "include": "#q_chevron_string_content"
1533
+ }
1534
+ ]
1535
+ },
1536
+ {
1537
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(«)",
1538
+ "beginCaptures": {
1539
+ "1": {
1540
+ "name": "string.quoted.qq.operator.perl6fe"
1541
+ },
1542
+ "2": {
1543
+ "name": "support.function.quote.adverb.perl6fe"
1544
+ },
1545
+ "3": {
1546
+ "name": "punctuation.definition.string.perl6fe"
1547
+ }
1548
+ },
1549
+ "end": "\\\\\\\\»|(?<!\\\\)»",
1550
+ "endCaptures": {
1551
+ "0": {
1552
+ "name": "punctuation.definition.string.perl6fe"
1553
+ }
1554
+ },
1555
+ "contentName": "string.quoted.qq.chevron.quote.perl6fe",
1556
+ "patterns": [
1557
+ {
1558
+ "match": "\\\\«|\\\\»",
1559
+ "name": "constant.character.escape.perl6fe"
1560
+ },
1561
+ {
1562
+ "include": "#qq_character_escape"
1563
+ },
1564
+ {
1565
+ "include": "source.perl6fe#interpolation"
1566
+ },
1567
+ {
1568
+ "include": "#q_chevron_string_content"
1569
+ }
1570
+ ]
1571
+ },
1572
+ {
1573
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(⟅)",
1574
+ "beginCaptures": {
1575
+ "1": {
1576
+ "name": "string.quoted.q.operator.perl6fe"
1577
+ },
1578
+ "2": {
1579
+ "name": "support.function.quote.adverb.perl6fe"
1580
+ },
1581
+ "3": {
1582
+ "name": "punctuation.definition.string.perl6fe"
1583
+ }
1584
+ },
1585
+ "end": "⟆",
1586
+ "endCaptures": {
1587
+ "0": {
1588
+ "name": "punctuation.definition.string.perl6fe"
1589
+ }
1590
+ },
1591
+ "contentName": "string.quoted.q.s-shaped-bag-delimiter.quote.perl6fe",
1592
+ "patterns": [
1593
+ {
1594
+ "include": "#q_s-shaped-bag-delimiter_string_content"
1595
+ }
1596
+ ]
1597
+ },
1598
+ {
1599
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(⟅)",
1600
+ "beginCaptures": {
1601
+ "1": {
1602
+ "name": "string.quoted.q.operator.perl6fe"
1603
+ },
1604
+ "2": {
1605
+ "name": "support.function.quote.adverb.perl6fe"
1606
+ },
1607
+ "3": {
1608
+ "name": "punctuation.definition.string.perl6fe"
1609
+ }
1610
+ },
1611
+ "end": "\\\\\\\\⟆|(?<!\\\\)⟆",
1612
+ "endCaptures": {
1613
+ "0": {
1614
+ "name": "punctuation.definition.string.perl6fe"
1615
+ }
1616
+ },
1617
+ "contentName": "string.quoted.q.s-shaped-bag-delimiter.quote.perl6fe",
1618
+ "patterns": [
1619
+ {
1620
+ "match": "\\\\⟅|\\\\⟆",
1621
+ "name": "constant.character.escape.perl6fe"
1622
+ },
1623
+ {
1624
+ "include": "#q_s-shaped-bag-delimiter_string_content"
1625
+ }
1626
+ ]
1627
+ },
1628
+ {
1629
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(⟅)",
1630
+ "beginCaptures": {
1631
+ "1": {
1632
+ "name": "string.quoted.qq.operator.perl6fe"
1633
+ },
1634
+ "2": {
1635
+ "name": "support.function.quote.adverb.perl6fe"
1636
+ },
1637
+ "3": {
1638
+ "name": "punctuation.definition.string.perl6fe"
1639
+ }
1640
+ },
1641
+ "end": "\\\\\\\\⟆|(?<!\\\\)⟆",
1642
+ "endCaptures": {
1643
+ "0": {
1644
+ "name": "punctuation.definition.string.perl6fe"
1645
+ }
1646
+ },
1647
+ "contentName": "string.quoted.qq.s-shaped-bag-delimiter.quote.perl6fe",
1648
+ "patterns": [
1649
+ {
1650
+ "match": "\\\\⟅|\\\\⟆",
1651
+ "name": "constant.character.escape.perl6fe"
1652
+ },
1653
+ {
1654
+ "include": "#qq_character_escape"
1655
+ },
1656
+ {
1657
+ "include": "source.perl6fe#interpolation"
1658
+ },
1659
+ {
1660
+ "include": "#q_s-shaped-bag-delimiter_string_content"
1661
+ }
1662
+ ]
1663
+ },
1664
+ {
1665
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(/)",
1666
+ "beginCaptures": {
1667
+ "1": {
1668
+ "name": "string.quoted.q.operator.perl6fe"
1669
+ },
1670
+ "2": {
1671
+ "name": "support.function.quote.adverb.perl6fe"
1672
+ },
1673
+ "3": {
1674
+ "name": "punctuation.definition.string.perl6fe"
1675
+ }
1676
+ },
1677
+ "end": "/",
1678
+ "endCaptures": {
1679
+ "0": {
1680
+ "name": "punctuation.definition.string.perl6fe"
1681
+ }
1682
+ },
1683
+ "contentName": "string.quoted.q.slash.quote.perl6fe",
1684
+ "patterns": [
1685
+ {
1686
+ "include": "#q_slash_string_content"
1687
+ }
1688
+ ]
1689
+ },
1690
+ {
1691
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(/)",
1692
+ "beginCaptures": {
1693
+ "1": {
1694
+ "name": "string.quoted.q.operator.perl6fe"
1695
+ },
1696
+ "2": {
1697
+ "name": "support.function.quote.adverb.perl6fe"
1698
+ },
1699
+ "3": {
1700
+ "name": "punctuation.definition.string.perl6fe"
1701
+ }
1702
+ },
1703
+ "end": "\\\\\\\\/|(?<!\\\\)/",
1704
+ "endCaptures": {
1705
+ "0": {
1706
+ "name": "punctuation.definition.string.perl6fe"
1707
+ }
1708
+ },
1709
+ "contentName": "string.quoted.q.slash.quote.perl6fe",
1710
+ "patterns": [
1711
+ {
1712
+ "match": "\\\\/",
1713
+ "name": "constant.character.escape.perl6fe"
1714
+ },
1715
+ {
1716
+ "include": "#q_slash_string_content"
1717
+ }
1718
+ ]
1719
+ },
1720
+ {
1721
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(/)",
1722
+ "beginCaptures": {
1723
+ "1": {
1724
+ "name": "string.quoted.qq.operator.perl6fe"
1725
+ },
1726
+ "2": {
1727
+ "name": "support.function.quote.adverb.perl6fe"
1728
+ },
1729
+ "3": {
1730
+ "name": "punctuation.definition.string.perl6fe"
1731
+ }
1732
+ },
1733
+ "end": "\\\\\\\\/|(?<!\\\\)/",
1734
+ "endCaptures": {
1735
+ "0": {
1736
+ "name": "punctuation.definition.string.perl6fe"
1737
+ }
1738
+ },
1739
+ "contentName": "string.quoted.qq.slash.quote.perl6fe",
1740
+ "patterns": [
1741
+ {
1742
+ "match": "\\\\/",
1743
+ "name": "constant.character.escape.perl6fe"
1744
+ },
1745
+ {
1746
+ "include": "#qq_character_escape"
1747
+ },
1748
+ {
1749
+ "include": "source.perl6fe#interpolation"
1750
+ },
1751
+ {
1752
+ "include": "#q_slash_string_content"
1753
+ }
1754
+ ]
1755
+ },
1756
+ {
1757
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s+(')",
1758
+ "beginCaptures": {
1759
+ "1": {
1760
+ "name": "string.quoted.q.operator.perl6fe"
1761
+ },
1762
+ "2": {
1763
+ "name": "support.function.quote.adverb.perl6fe"
1764
+ },
1765
+ "3": {
1766
+ "name": "punctuation.definition.string.perl6fe"
1767
+ }
1768
+ },
1769
+ "end": "'",
1770
+ "endCaptures": {
1771
+ "0": {
1772
+ "name": "punctuation.definition.string.perl6fe"
1773
+ }
1774
+ },
1775
+ "contentName": "string.quoted.q.single.quote.perl6fe",
1776
+ "patterns": [
1777
+ {
1778
+ "include": "#q_single_string_content"
1779
+ }
1780
+ ]
1781
+ },
1782
+ {
1783
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s+(')",
1784
+ "beginCaptures": {
1785
+ "1": {
1786
+ "name": "string.quoted.q.operator.perl6fe"
1787
+ },
1788
+ "2": {
1789
+ "name": "support.function.quote.adverb.perl6fe"
1790
+ },
1791
+ "3": {
1792
+ "name": "punctuation.definition.string.perl6fe"
1793
+ }
1794
+ },
1795
+ "end": "\\\\\\\\'|(?<!\\\\)'",
1796
+ "endCaptures": {
1797
+ "0": {
1798
+ "name": "punctuation.definition.string.perl6fe"
1799
+ }
1800
+ },
1801
+ "contentName": "string.quoted.q.single.quote.perl6fe",
1802
+ "patterns": [
1803
+ {
1804
+ "match": "\\\\'",
1805
+ "name": "constant.character.escape.perl6fe"
1806
+ },
1807
+ {
1808
+ "include": "#q_single_string_content"
1809
+ }
1810
+ ]
1811
+ },
1812
+ {
1813
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s+(')",
1814
+ "beginCaptures": {
1815
+ "1": {
1816
+ "name": "string.quoted.qq.operator.perl6fe"
1817
+ },
1818
+ "2": {
1819
+ "name": "support.function.quote.adverb.perl6fe"
1820
+ },
1821
+ "3": {
1822
+ "name": "punctuation.definition.string.perl6fe"
1823
+ }
1824
+ },
1825
+ "end": "\\\\\\\\'|(?<!\\\\)'",
1826
+ "endCaptures": {
1827
+ "0": {
1828
+ "name": "punctuation.definition.string.perl6fe"
1829
+ }
1830
+ },
1831
+ "contentName": "string.quoted.qq.single.quote.perl6fe",
1832
+ "patterns": [
1833
+ {
1834
+ "match": "\\\\'",
1835
+ "name": "constant.character.escape.perl6fe"
1836
+ },
1837
+ {
1838
+ "include": "#qq_character_escape"
1839
+ },
1840
+ {
1841
+ "include": "source.perl6fe#interpolation"
1842
+ },
1843
+ {
1844
+ "include": "#q_single_string_content"
1845
+ }
1846
+ ]
1847
+ },
1848
+ {
1849
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\")",
1850
+ "beginCaptures": {
1851
+ "1": {
1852
+ "name": "string.quoted.q.operator.perl6fe"
1853
+ },
1854
+ "2": {
1855
+ "name": "support.function.quote.adverb.perl6fe"
1856
+ },
1857
+ "3": {
1858
+ "name": "punctuation.definition.string.perl6fe"
1859
+ }
1860
+ },
1861
+ "end": "\"",
1862
+ "endCaptures": {
1863
+ "0": {
1864
+ "name": "punctuation.definition.string.perl6fe"
1865
+ }
1866
+ },
1867
+ "contentName": "string.quoted.q.double.quote.perl6fe",
1868
+ "patterns": [
1869
+ {
1870
+ "include": "#q_double_string_content"
1871
+ }
1872
+ ]
1873
+ },
1874
+ {
1875
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\")",
1876
+ "beginCaptures": {
1877
+ "1": {
1878
+ "name": "string.quoted.q.operator.perl6fe"
1879
+ },
1880
+ "2": {
1881
+ "name": "support.function.quote.adverb.perl6fe"
1882
+ },
1883
+ "3": {
1884
+ "name": "punctuation.definition.string.perl6fe"
1885
+ }
1886
+ },
1887
+ "end": "\\\\\\\\\"|(?<!\\\\)\"",
1888
+ "endCaptures": {
1889
+ "0": {
1890
+ "name": "punctuation.definition.string.perl6fe"
1891
+ }
1892
+ },
1893
+ "contentName": "string.quoted.q.double.quote.perl6fe",
1894
+ "patterns": [
1895
+ {
1896
+ "match": "\\\\\"",
1897
+ "name": "constant.character.escape.perl6fe"
1898
+ },
1899
+ {
1900
+ "include": "#q_double_string_content"
1901
+ }
1902
+ ]
1903
+ },
1904
+ {
1905
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (qq(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*(\")",
1906
+ "beginCaptures": {
1907
+ "1": {
1908
+ "name": "string.quoted.qq.operator.perl6fe"
1909
+ },
1910
+ "2": {
1911
+ "name": "support.function.quote.adverb.perl6fe"
1912
+ },
1913
+ "3": {
1914
+ "name": "punctuation.definition.string.perl6fe"
1915
+ }
1916
+ },
1917
+ "end": "\\\\\\\\\"|(?<!\\\\)\"",
1918
+ "endCaptures": {
1919
+ "0": {
1920
+ "name": "punctuation.definition.string.perl6fe"
1921
+ }
1922
+ },
1923
+ "contentName": "string.quoted.qq.double.quote.perl6fe",
1924
+ "patterns": [
1925
+ {
1926
+ "match": "\\\\\"",
1927
+ "name": "constant.character.escape.perl6fe"
1928
+ },
1929
+ {
1930
+ "include": "#qq_character_escape"
1931
+ },
1932
+ {
1933
+ "include": "source.perl6fe#interpolation"
1934
+ },
1935
+ {
1936
+ "include": "#q_double_string_content"
1937
+ }
1938
+ ]
1939
+ },
1940
+ {
1941
+ "begin": "(?x) (?<=^|[\\[\\]\\s\\(\\){},;]) (q|qq|Q(?:x|w|ww|v|s|a|h|f|c|b|p)?) ((?: \\s*:(?: x|exec|w|words|ww|quotewords|v|val|q|single|double| s|scalar|a|array|h|hash|f|function|c|closure|b|blackslash| regexp|substr|trans|codes|p|path|nfkc|nfkd ) )*) \\s*([^\\p{Ps}\\p{Pe}\\p{Pi}\\p{Pf}\\w\\s])",
1942
+ "beginCaptures": {
1943
+ "1": {
1944
+ "name": "string.quoted.q.operator.perl6fe"
1945
+ },
1946
+ "2": {
1947
+ "name": "support.function.quote.adverb.perl6fe"
1948
+ },
1949
+ "3": {
1950
+ "name": "punctuation.definition.string.perl6fe"
1951
+ }
1952
+ },
1953
+ "end": "\\3",
1954
+ "endCaptures": {
1955
+ "0": {
1956
+ "name": "punctuation.definition.string.perl6fe"
1957
+ }
1958
+ },
1959
+ "contentName": "string.quoted.q.any.quote.perl6fe"
1960
+ }
1961
+ ],
1962
+ "repository": {
1963
+ "qq_character_escape": {
1964
+ "patterns": [
1965
+ {
1966
+ "match": "(?x) \\\\[abtnfre\\\\\\{\\}] | \\\\",
1967
+ "name": "constant.character.escape.perl6fe"
1968
+ }
1969
+ ]
1970
+ },
1971
+ "q_right_double_right_double_string_content": {
1972
+ "begin": "”",
1973
+ "end": "”",
1974
+ "patterns": [
1975
+ {
1976
+ "include": "#q_right_double_right_double_string_content"
1977
+ }
1978
+ ]
1979
+ },
1980
+ "q_triple_paren_string_content": {
1981
+ "begin": "\\(\\(\\(",
1982
+ "end": "\\\\\\\\\\)\\)\\)|(?<!\\\\)\\)\\)\\)",
1983
+ "patterns": [
1984
+ {
1985
+ "include": "#q_triple_paren_string_content"
1986
+ }
1987
+ ]
1988
+ },
1989
+ "q_triple_bracket_string_content": {
1990
+ "begin": "\\[\\[\\[",
1991
+ "end": "\\\\\\\\\\]\\]\\]|(?<!\\\\)\\]\\]\\]",
1992
+ "patterns": [
1993
+ {
1994
+ "include": "#q_triple_bracket_string_content"
1995
+ }
1996
+ ]
1997
+ },
1998
+ "q_triple_brace_string_content": {
1999
+ "begin": "\\{\\{\\{",
2000
+ "end": "\\\\\\\\\\}\\}\\}|(?<!\\\\)\\}\\}\\}",
2001
+ "patterns": [
2002
+ {
2003
+ "include": "#q_triple_brace_string_content"
2004
+ }
2005
+ ]
2006
+ },
2007
+ "q_triple_angle_string_content": {
2008
+ "begin": "<<<",
2009
+ "end": "\\\\\\\\>>>|(?<!\\\\)>>>",
2010
+ "patterns": [
2011
+ {
2012
+ "include": "#q_triple_angle_string_content"
2013
+ }
2014
+ ]
2015
+ },
2016
+ "q_double_angle_string_content": {
2017
+ "begin": "<<",
2018
+ "end": "\\\\\\\\>>|(?<!\\\\)>>",
2019
+ "patterns": [
2020
+ {
2021
+ "include": "#q_double_angle_string_content"
2022
+ }
2023
+ ]
2024
+ },
2025
+ "q_double_paren_string_content": {
2026
+ "begin": "\\(\\(",
2027
+ "end": "\\\\\\\\\\)\\)|(?<!\\\\)\\)\\)",
2028
+ "patterns": [
2029
+ {
2030
+ "include": "#q_double_paren_string_content"
2031
+ }
2032
+ ]
2033
+ },
2034
+ "q_double_bracket_string_content": {
2035
+ "begin": "\\[\\[",
2036
+ "end": "\\\\\\\\\\]\\]|(?<!\\\\)\\]\\]",
2037
+ "patterns": [
2038
+ {
2039
+ "include": "#q_double_bracket_string_content"
2040
+ }
2041
+ ]
2042
+ },
2043
+ "q_double_brace_string_content": {
2044
+ "begin": "{{",
2045
+ "end": "\\\\\\\\}}|(?<!\\\\)}}",
2046
+ "patterns": [
2047
+ {
2048
+ "include": "#q_double_brace_string_content"
2049
+ }
2050
+ ]
2051
+ },
2052
+ "q_brace_string_content": {
2053
+ "begin": "{",
2054
+ "end": "\\\\\\\\}|(?<!\\\\)}",
2055
+ "patterns": [
2056
+ {
2057
+ "include": "#q_brace_string_content"
2058
+ }
2059
+ ]
2060
+ },
2061
+ "q_angle_string_content": {
2062
+ "begin": "<",
2063
+ "end": "\\\\\\\\>|(?<!\\\\)>",
2064
+ "patterns": [
2065
+ {
2066
+ "include": "#q_angle_string_content"
2067
+ }
2068
+ ]
2069
+ },
2070
+ "q_paren_string_content": {
2071
+ "begin": "\\(",
2072
+ "end": "\\\\\\\\\\)|(?<!\\\\)\\)",
2073
+ "patterns": [
2074
+ {
2075
+ "include": "#q_paren_string_content"
2076
+ }
2077
+ ]
2078
+ },
2079
+ "q_bracket_string_content": {
2080
+ "begin": "\\[",
2081
+ "end": "\\\\\\\\\\]|(?<!\\\\)\\]",
2082
+ "patterns": [
2083
+ {
2084
+ "include": "#q_bracket_string_content"
2085
+ }
2086
+ ]
2087
+ },
2088
+ "q_left_double_right_double_string_content": {
2089
+ "begin": "“",
2090
+ "end": "\\\\\\\\”|(?<!\\\\)”",
2091
+ "patterns": [
2092
+ {
2093
+ "include": "#q_left_double_right_double_string_content"
2094
+ }
2095
+ ]
2096
+ },
2097
+ "q_left_single_right_single_string_content": {
2098
+ "begin": "‘",
2099
+ "end": "\\\\\\\\’|(?<!\\\\)’",
2100
+ "patterns": [
2101
+ {
2102
+ "include": "#q_left_single_right_single_string_content"
2103
+ }
2104
+ ]
2105
+ },
2106
+ "q_fw_cornerbracket_string_content": {
2107
+ "begin": "「",
2108
+ "end": "\\\\\\\\」|(?<!\\\\)」",
2109
+ "patterns": [
2110
+ {
2111
+ "include": "#q_fw_cornerbracket_string_content"
2112
+ }
2113
+ ]
2114
+ },
2115
+ "q_hw_cornerbracket_string_content": {
2116
+ "begin": "「",
2117
+ "end": "\\\\\\\\」|(?<!\\\\)」",
2118
+ "patterns": [
2119
+ {
2120
+ "include": "#q_hw_cornerbracket_string_content"
2121
+ }
2122
+ ]
2123
+ },
2124
+ "q_chevron_string_content": {
2125
+ "begin": "«",
2126
+ "end": "\\\\\\\\»|(?<!\\\\)»",
2127
+ "patterns": [
2128
+ {
2129
+ "include": "#q_chevron_string_content"
2130
+ }
2131
+ ]
2132
+ },
2133
+ "q_s-shaped-bag-delimiter_string_content": {
2134
+ "begin": "⟅",
2135
+ "end": "\\\\\\\\⟆|(?<!\\\\)⟆",
2136
+ "patterns": [
2137
+ {
2138
+ "include": "#q_s-shaped-bag-delimiter_string_content"
2139
+ }
2140
+ ]
2141
+ },
2142
+ "q_slash_string_content": {
2143
+ "begin": "/",
2144
+ "end": "\\\\\\\\/|(?<!\\\\)/",
2145
+ "patterns": [
2146
+ {
2147
+ "include": "#q_slash_string_content"
2148
+ }
2149
+ ]
2150
+ },
2151
+ "q_single_string_content": {
2152
+ "begin": "'",
2153
+ "end": "\\\\\\\\'|(?<!\\\\)'",
2154
+ "patterns": [
2155
+ {
2156
+ "include": "#q_single_string_content"
2157
+ }
2158
+ ]
2159
+ },
2160
+ "q_double_string_content": {
2161
+ "begin": "\"",
2162
+ "end": "\\\\\\\\\"|(?<!\\\\)\"",
2163
+ "patterns": [
2164
+ {
2165
+ "include": "#q_double_string_content"
2166
+ }
2167
+ ]
2168
+ }
2169
+ }
2170
+ }