File tree 1 file changed +178
-0
lines changed
1 file changed +178
-0
lines changed Original file line number Diff line number Diff line change @@ -13539,3 +13539,181 @@ Result:
13539
13539
(abc_123;a=1;b=2);cdef_456
13540
13540
~~~
13541
13541
13542
+
13543
+ ## string
13544
+
13545
+
13546
+ ### basic string
13547
+
13548
+ Input:
13549
+ ~~~
13550
+ "foo bar"
13551
+ ~~~
13552
+
13553
+ Result:
13554
+ ~~~
13555
+ "foo bar"
13556
+ ~~~
13557
+
13558
+ ### empty string
13559
+
13560
+ Input:
13561
+ ~~~
13562
+ ""
13563
+ ~~~
13564
+
13565
+ Result:
13566
+ ~~~
13567
+ ""
13568
+ ~~~
13569
+
13570
+ ### long string
13571
+
13572
+ Input:
13573
+ ~~~
13574
+ "foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo "
13575
+ ~~~
13576
+
13577
+ Result:
13578
+ ~~~
13579
+ "foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo foo "
13580
+ ~~~
13581
+
13582
+ ### whitespace string
13583
+
13584
+ Input:
13585
+ ~~~
13586
+ " "
13587
+ ~~~
13588
+
13589
+ Result:
13590
+ ~~~
13591
+ " "
13592
+ ~~~
13593
+
13594
+ ### non-ascii string
13595
+
13596
+ Input:
13597
+ ~~~
13598
+ "füü"
13599
+ ~~~
13600
+
13601
+ Expects Parse Error
13602
+ ~~~
13603
+ >>"füü"<<
13604
+ --^ (0xfc) Invalid character in field line at position 2: 'ü' (0x00fc) (input: "füü")
13605
+ ~~~
13606
+
13607
+
13608
+ ### tab in string
13609
+
13610
+ Input:
13611
+ ~~~
13612
+ " "
13613
+ ~~~
13614
+
13615
+ Expects Parse Error
13616
+ ~~~
13617
+ >>" "<<
13618
+ --^ (0x22) Invalid character in String at position 2
13619
+ ~~~
13620
+
13621
+
13622
+ ### newline in string
13623
+
13624
+ Input:
13625
+ ~~~
13626
+ "
13627
+ "
13628
+ ~~~
13629
+
13630
+ Expects Parse Error
13631
+ ~~~
13632
+ >>"
13633
+ "<<
13634
+ ---^ (0x20) Invalid character in String at position 3
13635
+ ~~~
13636
+
13637
+
13638
+ ### single quoted string
13639
+
13640
+ Input:
13641
+ ~~~
13642
+ 'foo'
13643
+ ~~~
13644
+
13645
+ Expects Parse Error
13646
+ ~~~
13647
+ >>'foo'<<
13648
+ ^ (0x27) Unexpected start character in Bare Item: ''' (\u0027)
13649
+ ~~~
13650
+
13651
+
13652
+ ### unbalanced string
13653
+
13654
+ Input:
13655
+ ~~~
13656
+ "foo
13657
+ ~~~
13658
+
13659
+ Expects Parse Error
13660
+ ~~~
13661
+ >>"foo<<
13662
+ ----^ Closing DQUOTE missing
13663
+ ~~~
13664
+
13665
+
13666
+ ### string quoting
13667
+
13668
+ Input:
13669
+ ~~~
13670
+ "foo \"bar\" \\ baz"
13671
+ ~~~
13672
+
13673
+ Result:
13674
+ ~~~
13675
+ "foo \"bar\" \\ baz"
13676
+ ~~~
13677
+
13678
+ ### bad string quoting
13679
+
13680
+ Input:
13681
+ ~~~
13682
+ "foo \,"
13683
+ ~~~
13684
+
13685
+ Expects Parse Error
13686
+ ~~~
13687
+ >>"foo \,"<<
13688
+ ------^ (0x2c) Invalid escape sequence character ',' at position 6
13689
+ ~~~
13690
+
13691
+
13692
+ ### ending string quote
13693
+
13694
+ Input:
13695
+ ~~~
13696
+ "foo \"
13697
+ ~~~
13698
+
13699
+ Expects Parse Error
13700
+ ~~~
13701
+ >>"foo \"<<
13702
+ -------^ Closing DQUOTE missing
13703
+ ~~~
13704
+
13705
+
13706
+ ### abruptly ending string quote
13707
+
13708
+ Input:
13709
+ ~~~
13710
+ "foo \
13711
+ ~~~
13712
+
13713
+ Expects Parse Error
13714
+ ~~~
13715
+ >>"foo \<<
13716
+ ------^ Incomplete escape sequence at position 6
13717
+ ~~~
13718
+
13719
+
You can’t perform that action at this time.
0 commit comments