File tree Expand file tree Collapse file tree 1 file changed +24
-8
lines changed Expand file tree Collapse file tree 1 file changed +24
-8
lines changed Original file line number Diff line number Diff line change @@ -341,20 +341,36 @@ $(GNAME StringPostfix):
341
341
342
342
$(GNAME DelimitedString):
343
343
$(B q") $(GLINK Delimiter) $(GLINK WysiwygCharacters)$(OPT) $(GLINK MatchingDelimiter) $(B ")
344
+ $(B q"$(LPAREN)) $(GLINK ParenDelimitedCharacters)$(OPT) $(B $(RPAREN)")
345
+ $(B q"[) $(GLINK BracketDelimitedCharacters)$(OPT) $(B ]")
346
+ $(B q"{) $(GLINK BraceDelimitedCharacters)$(OPT) $(B }")
347
+ $(B q"<) $(GLINK AngleDelimitedCharacters)$(OPT) $(B >")
344
348
345
349
$(GNAME Delimiter):
346
- $(B $(LPAREN))
347
- $(B {)
348
- $(B [)
349
- $(B <)
350
350
$(GLINK Identifier)
351
351
352
352
$(GNAME MatchingDelimiter):
353
- $(B $(RPAREN))
354
- $(B })
355
- $(B ])
356
- $(B >)
357
353
$(GLINK Identifier)
354
+
355
+ $(GNAME ParenDelimitedCharacters):
356
+ $(GLINK WysiwygCharacter)
357
+ $(GLINK WysiwygCharacter) $(GSELF ParenDelimitedCharacters)
358
+ $(B $(LPAREN)) $(GSELF ParenDelimitedCharacters)$(OPT) $(B $(RPAREN))
359
+
360
+ $(GNAME BracketDelimitedCharacters):
361
+ $(GLINK WysiwygCharacter)
362
+ $(GLINK WysiwygCharacter) $(GSELF BracketDelimitedCharacters)
363
+ $(B [) $(GSELF BracketDelimitedCharacters)$(OPT) $(B ])
364
+
365
+ $(GNAME BraceDelimitedCharacters):
366
+ $(GLINK WysiwygCharacter)
367
+ $(GLINK WysiwygCharacter) $(GSELF BraceDelimitedCharacters)
368
+ $(B {) $(GSELF BraceDelimitedCharacters)$(OPT) $(B })
369
+
370
+ $(GNAME AngleDelimitedCharacters):
371
+ $(GLINK WysiwygCharacter)
372
+ $(GLINK WysiwygCharacter) $(GSELF AngleDelimitedCharacters)
373
+ $(B <) $(GSELF AngleDelimitedCharacters)$(OPT) $(B >)
358
374
)
359
375
$(GRAMMAR
360
376
$(GNAME TokenString):
You can’t perform that action at this time.
0 commit comments