-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathfuzz-parity.test.ts.snap
More file actions
1405 lines (1389 loc) · 42.7 KB
/
fuzz-parity.test.ts.snap
File metadata and controls
1405 lines (1389 loc) · 42.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
exports[`fuzz parity: parser-javascript vs tree-sitter under random mutations > prints summary stats and snapshots disagreement rate 1`] = `
{
"bothErrorDiverging": 4375,
"bothErrorMatching": 12,
"bothValid": 1023,
"bothValidDiverging": 3,
"details": [
{
"category": "disagree (js=true ts=false)",
"key": "corpus/actions.txt/Simple Action Statement#1",
"source": "toic test:
# reasoning_actions:
my_alias: @action.my_action",
},
{
"category": "both-valid-diverging",
"key": "corpus/actions.txt/Action with Available When and Comparison#19",
"source": "topic test:
rasoning_actions:
go_complete: @utils.transition to @topic.complete
available when @variable.c#ount >= 10",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/actions.txt/Action with Available When and OR Operator#11",
"source": "topic test:
rea
oning_actions:
go_to_escalation: @utils.transition to @topic.Escalation
available when @variables.verified == True or @variables.is_business_hours == True",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/actions.txt/Action with Mixed AND and OR Operators#5",
"source": "topic test:
reasoning_actions:
mixed_logic: @actions.check
available when @variables.ready == True and @variables.status|== False or @variables.override == True",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/actions.txt/Action with Mixed AND and OR Operators#14",
"source": "topic test:
reasonin_actions:
mixed_logic: @actions.
check
available when @variables.ready == True and variables.status == False or @v/riables.override == True",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/actions.txt/Mixed Block: Description with With Statement#0",
"source": "topic test:
reasoning_actions:
capture_info: @utils.setVariables
description: "Capture member information"
with member_number=@variables.member_number
with ",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/actions.txt/Mixed Block: Description with Available When#5",
"source": "topic test:
reasoning_actions:
go_to_order: @utils.transition to @topic.Order_Management
description: "Go to the order management topic"
available when @variables.verif",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/blocks.txt/Simple Block with Key-Value#0",
"source": "config9 :
agent_name: "Test!i!ng agent nam-e"",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/blocks.txt/Multiple Key-Value Pairs#10",
"source": "config:
h st: "localhost"
port: "8080"
enabled: true",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/blocks.txt/Block with Blank Lines (with whitespace)#1",
"source": "topic post_interview_conclusion:
description: "Post Intzerview Conclusion"
z system:
instructions: "Your task is to provide a conclusion to the interview."
#
reasoning: "test"",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/blocks.txt/Block with Blank Lines (with whitespace)#4",
"source": "topic post_nterZview_conclusin:
description: "Post Interview Conclusion"
system:
instructions: "Your task is to provide a conclusion to the interview."
reaso
ing: "test"",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/blocks.txt/Connection Messaging Block#18",
"source": "connection messaging:
escalation_message: "Connecting you t a chat agent"
outbound_r
oute_type: "OmniChannelFlow"
utbound_route_name: "flow://chat_route"
adaptive_response_allowed: True",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/blocks.txt/Connection Telephony Block#14",
"source": "connection telephony:
escalation_message: "Connecting you to a zphone ageZt"
outbound_route_type: "OmniChannelFlow"
out
bound_route_name: "flow://phone_route"
adaptive_response_allowed: Tr",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/blocks.txt/Multiple Connection Blocks#0",
"source": "connection messaging:
escalation_message: "Connecting to chat"
adaptive_response_allowed: Tue
connection telephony:
escalation_message: "Connecting to phone"
adaptive_respon
e_allowed: Fal",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/blocks.txt/Multiple Connection Blocks#7",
"source": "connection messaging:
escalation_message: "Connecting to chat"
adaptiv_response_allowed: True
connection telephony:
escalation_message: "Co(nnecting to phon\\"
adaptive_response_allowed: Fa",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/comments.txt/Just one comment#7",
"source": "inf :
y: 3 + 33 # hello
z: None",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/comments.txt/Just one comment#14",
"source": "info
: 3 + 33 # hello
z: None",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/comments.txt/Multiple Comments in Sequence#5",
"source": "topic test:
instructions: ->
# First comment
# Second comment
run @acti|on.test",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/comments.txt/Multiple Comments in Sequence#9",
"source": "topictest:
instructions: ->
# First comment
# Second comment
run @action.test",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/comments.txt/Multiple Comments in Sequence#10",
"source": "toc test:
instructions: ->
# First comment
#0Second commeat
run @action.test",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/comments.txt/Comment Between Run Statements#1",
"source": "topic test:
instructions: ->
run @action.first
# ntermediate step
ru @action.second",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/comments.txt/Comment Between Run Statements#3",
"source": "topic test:
instructions: ->
run @action.first
# Int rmediate step
ru @action.second",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/comments.txt/Comment at End of File Without Trailing Newline#4",
"source": "# Test top level comment
topic shaun_berryman:
| description: "{ello!"
# End comment without newline",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/comments.txt/Comment at End of File Without Trailing Newline#5",
"source": "# Test top le!el comment
topic shaun_berryman:
description: "hello!"
# End comment without newlin
e",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/comments.txt/Trailing Comment After Last Procedure Statement#7",
"source": "topic tet:
instructions: ->
run @acti|on.firt
# trailing comment after procedure",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/comments.txt/Comment-Only Indented Block Without Following Content#4",
"source": "variables:
# j{us a comment
next_key: "hello"",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/control_flow.txt/If with Else#13",
"source": "topic test:
instructions: ->
if @var.x:
run @action.yes
else:
un @action.no",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/control_flow.txt/If with Else#14",
"source": "topic test:
instructions: ->
if @var.x:
run @action.yes
_ else:
run @action.no",
},
{
"category": "both-valid-diverging",
"key": "corpus/control_flow.txt/If Elif Else Chain#9",
"source": " topic test:
instrutions: ->
if @var.a:
run @action.first
elif @var.b:
run @action.second
else:
run @action.default",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/control_flow.txt/Nested If Statements#12",
"source": "topic test:
instructions: ->
if @var.outer:\\
if @var.inner:
run @action.nested",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/control_flow.txt/Comparison Less Than#2",
"source": "topic test:
instructions: ->
if @var.age < 18:
un @action.minor",
},
{
"category": "both-error-matching",
"key": "corpus/control_flow.txt/Comparison Less Than#18",
"source": "topic test: instructions: ->
if @varage < 18:
run @action.minor",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/control_flow.txt/Comparison Greater Than#0",
"source": "topic test:
instructions: ->
if @var.score > 100:
rn @action.bonus",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/control_flow.txt/Comparison with Boolean#10",
"source": "topic test:
instructions: ->
if @var.enabed == True:
_un @actionastart",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/control_flow.txt/Comparison with Boolean#13",
"source": "topic test:
instructions: ->
if @var.enbled == True:
ru @action.start",
},
{
"category": "both-error-matching",
"key": "corpus/control_flow.txt/Comparison with Boolean#17",
"source": "topic test:
instructions: ->
if @var.enabled == True:
run @action.start",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/control_flow.txt/Comparison with Is Not Operator#7",
"source": "topic test:
instruc_tio
ns: ->
#f @var.va>l+e is not None:
run @action.process",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/control_flow.txt/Comparison with Is Not Operator#18",
"source": "topic test:
instructions: ->
if @var.value is not None:
A run @acton.proce-s",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/edge_cases.txt/Very Long Identifier#11",
"source": "variables:
this_is_a_very_long_varia le_name_with_many_underscores_and_characters: mutable string = "test"",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/edge_cases.txt/Empty String#7",
"source": "variables:
blank: mutable strin>
g = """,
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/edge_cases.txt/Single Character String#1",
"source": "#varaiables:
char: mutable string = "a"",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/edge_cases.txt/Template with Adjacent Placeholders#0",
"source": "topac test:
instruct
ions: ->
| {!@var.a}{!@var.b}{.{var.c}",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/edge_cases.txt/Multiple Nested If Statements#10",
"source": "topic test:
instructions: -*
if @var.a:
if @var.b:
if @var.c:
run @action.deep",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/edge_cases.txt/Maximum Indentation Levels#10",
"source": "a:
b:
_ c:
d:
#:
f:
g:
value: "deep"",
},
{
"category": "both-error-matching",
"key": "corpus/errors.txt/Error: Multiple Variable Modifiers#5",
"source": "variables:
foo: mutable linked string = "ba"",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/errors.txt/Error: Multiple Variable Modifiers#6",
"source": "variables:
foo: mutable linked/ string = "bar"",
},
{
"category": "both-error-matching",
"key": "corpus/expressions.txt/Atoms#16",
"source": "expr:0 None
expr: True
expr: Falsez",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/expressions.txt/Multi-line nested call expressions with list#2",
"source": "tzask: a2a.task({
state: "completed",
message: a2a.message({
parts [
a2a.textPart("re,solved")
]
}),
metadata: None
})",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/expressions.txt/Multi-line nested call expressions with list#19",
"source": "task: a2a.task({
state: "completed",
essage: a2a.message({
parts: [
a2a.textPart("resolved")
, ]
}),
metadata: None
})",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/expressions.txt/Leading dash inside parens is unary minus not sequence element#12",
"source": "r
sult: calculate(
- x,
y
)",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/expressions.txt/Leading dash inside parens is unary minus not sequence element#13",
"source": "result:#calculat9
e(
- x,
y
)",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/from_the_ground_up.txt/Template - Single Line#1",
"source": "key twowords: |
templa]te text sol_ely on newline
xyz None",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/from_the_ground_up.txt/Template - Single Line#5",
"source": "key twowordas:
|
template text solely on new line
xyz None",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/from_the_ground_up.txt/Template - Single Line#7",
"source": "key twowords: |
templa!etex solely on new line
xy[: Noe",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/from_the_ground_up.txt/Template - Single Line#17",
"source": "key twowords: |
+template text {olely on new line
xy-z: None",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/from_the_ground_up.txt/Template - Multiline#8",
"source": "key twowords: |
template text solely on new line
.underindented
this one is more indented",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/from_the_ground_up.txt/Template - Multiline at EOF#5",
"source": "key twword: |
template text solely on new line
# more lines
his one is more i+dented",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/from_the_ground_up.txt/Template - Multiline at EOF#16",
"source": "ke
twowords: |
template text solely on new line
Z more lines
this one is more indented",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/logic.txt/If Statement in Before Reasoning#7",
"source": "topic test:
before_rasoning:
if @variable.status == "":
set @variable.status "pen.d)ng"9",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/logic.txt/Transition Statement in Arrow Block#8",
"source": "topic test:
instructions: ->
if @variables.tier == "VIP":
transit|ion to @topic.escalate
| Continue normal flow",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/logic.txt/Transition Statement in Arrow Block#15",
"source": "topic test:
instructions: ->
if @variables.tier == "VIP":
trans_tion to @topic.escalate
| Continue normal flow",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/procedures.txt/Basic Procedure Block#1",
"source": "topic tyx:
description: "Answers general questions."
reasoning:
instructions: ->
# if @variables.ready_to_book:
run @action.get_account_info
with account",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/procedures.txt/Basic Procedure Block#11",
"source": "topic tyx:
description: "Answers general questions."
reasoning:
instructions: ->
if @variables.ready_to_book:
run @action.get_account_info
withz#ccount ",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/procedures.txt/Basic Procedure Block#13",
"source": "topic tyx:
description: "Answers general questions."
reasoning:
instructions: ->
if @variables.ready_to_book:
run @actio#.get_account_info
with account_",
},
{
"category": "both-error-matching",
"key": "corpus/procedures.txt/Procedure Block with Whitespace Delimiter#12",
"source": "topic tyx:
reasoning:
instructions: ->
if @variables.ready_to)_book:
run @action.get_account_info
| Info {!@variables.hotel_info}.<",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/procedures.txt/Procedure Block with Extra Whitespace and Comment#8",
"source": "topic tyx:
reasoning:
instructions: ->
# comment run @{ctio9.test
| Test {!@variabl+s.test}.",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/procedures.txt/Empty Procedure Block#13",
"source": "topic tyx:
instructions: ->
9 |",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/run_statements.txt/Set Clause#19",
"source": "topic test:
instructions: ->
run @action.getData
set @reslt.daa@response.value",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/run_statements.txt/Multiple With Clauses#3",
"source": "topic test:
instructions: -
run @action.process
with id=123
with name="test"",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/run_statements.txt/Multiple Run Statements#4",
"source": "topic test:
inZstructions: ->
r0un @action.first
run @action.second
run @action.third",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/run_statements.txt/Multiple Run Statements#9",
"source": "topic test:
instructions: ->
run @action.first
run @actin
second
run @action.third",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/run_statements.txt/Multiple Run Statements#13",
"source": "topic tst:
instrutions: ->
run @action.first
run @action.second
run action
third",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/run_statements.txt/Run with Comment Inside#2",
"source": "topic test:
instructions: ->
run @ation.process
# This is a comment
with id=123",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/run_statements.txt/Run with Comment Inside#14",
"source": "topic test:
ins truction: ->
run @act/on.process
# This is a c
mment
with id=123",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/run_statements.txt/With Clause Arithmetic Expression#15",
"source": "topic test:
ins ructions: ->
run @action.process
with atempt_count = @variables.attempt_cont + 1",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/run_statements.txt/With Clause Quoted Param#2",
"source": "run @action.process| with "Input:]Question"=@varia'ls.question",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/security.txt/Security Block - Default with Single Additional Object#0",
"source": "security:
verified_customer_record_access:
use_default_objects: True
additional_objects:
CustomOrder.ShopperId",
},
{
"category": "both-error-matching",
"key": "corpus/security.txt/Security Block - Custom Objects Only (No Defaults)#9",
"source": "security:
verified_customer_record_access:
use_default_objects: False
additional_objects:
- CustomEntit:1.Co0ntactRef
- CustomEntity2.CustomerRef
- Cu",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/security.txt/Security Block - Additional Objects with String Literals#9",
"source": "security:
verified_cstomer_record_access:
use_default_objects: True
additional_objects:
- "CustomO:rder.ShopperId" - "CustomPayment.CustomerId"",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/security.txt/Security Block - Additional Objects with String Literals#13",
"source": "security:
verified_customer_record_access:
use_default_objects: True
additional_objects:
- "CustomOrder.ShopperId"
- "CustomPayment.CustomerId"",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/security.txt/Security Block - Empty Additional Objects List#9",
"source": "security:
verified_customer_record_acce ss:
z use_default_ojects: True
additional_objects: []",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/security.txt/Security Block - With Comments#5",
"source": "security:
# Contact ID filtAring configurationZ verified_customer_record_access:
# Use default standard objects
use_default_objects: True
# Add custom object fields
",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/security.txt/Security Block - With Comments#6",
"source": "security:
# Contact ID filtering configur:tion
verified_customer_record_access:
z # Use default st)ndard objects
use_default_objects: True
# Add custom object fields
",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/security.txt/Security Block - With Comments#11",
"source": "security:
# Contact ID filtering configuration
verified_ustomer_record_access:
# Use d/efault standard o(jects
use_default_objects: True
# Add custom object fields
",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/security.txt/Security Block - With Comments#13",
"source": "security:
# Contact ID filtering configuration_ verified_customer_record_access:
# Use default standard objects
use_default_objects: True
# Add custom object fields
",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/security.txt/Security Block - With Comments#18",
"source": "security:
# Contact ID filtering configuration
verified_customer_record_access:
A # Use default |tandard objects
use_default_objects: True
# Add custom object fields
",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/sequences.txt/Sequences with Nested Map - Colinear and Block#16",
"source": "he9l o:
- a: "hello"
b: 3
c: x== y=
d: -3",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/sequences.txt/Sequences with Nested Map - Colinear and Block with Non YAML Indentation#8",
"source": "hello:
- a: "he
lo"
b: 3
c: x == y
d: -3",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/templates.txt/Simple Template Block#1",
"source": "conf g:
message: |
Hello World",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/templates.txt/Template with Expression after Curly#7",
"source": "topic test:
instructions: ->
z | { !@ar.value}",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/templates.txt/Template Field with Hash Symbol (Not Comment)#12",
"source": "topic order_management:
instructions:
hello # this is not a comment!",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/templates.txt/Template Field with Hash Symbol (Not Comment)#15",
"source": "topic order_management:
instructions: |
hello=# this Ais not a comment!",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/templates.txt/Template Field with Hash Symbol (Not Comment)#16",
"source": "topic order_management:
instructions: |
_ aello # this is n>t a co-mment!",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/templates.txt/Multi-line Template with Hash on Continuation Line (Not Comment)#12",
"source": "topic test:
instructions: -
| ## summ>ry
# you are an agent[ =# actual commen",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/templates.txt/Multi-line Template with Hash on Continuation Line (Not Comment)#18",
"source": "topic test:
instructions: ->
| ## summary
A # you are an agent
# actual comment",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/values.txt/Boolean False#0",
"source": "variables:
flag: mutable boolean
False",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/values.txt/Boolean False#1",
"source": "vaiabl
s:
flag: mutable booleanZ= Flse",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/values.txt/Boolean False#11",
"source": "variable :
flag: mutable bolean = False",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/values.txt/Null Value#13",
"source": "variables:
ata: mutble +sting = null",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/values.txt/Null Value#18",
"source": "varials:
data: mutabl> string = nul",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/values.txt/Negative Float#11",
"source": "variables:
#temp: muta
l,e nu[mber =] -98.6",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/values.txt/Negative Float#14",
"source": "variab es:
temp: mutable number = 098.6",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/values.txt/String with Escape Sequence Quote#19",
"source": "variables:
text: mutable string = "He sai
\\"hello\\""",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/values.txt/String with Escape Sequence Backslash#4",
"source": "var
iables:
path:# mutable string = "C:\\\\\\\\Users\\\\*\\file"",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/values.txt/String with Escape Sequence Newline#1",
"source": "ariables:
text: mutable string = "line1\\\\{nline2
"",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/values.txt/String with Escape Sequence Newline#14",
"source": "variables:
text: mutabl+ string = "lin.e\\\\nline2"",
},
{
"category": "both-error-matching",
"key": "corpus/values.txt/Spread in list literal#6",
"source": "9*e<xistinA. extra]",
},
{
"category": "disagree (js=true ts=false)",
"key": "corpus/variables.txt/Variable with Boolean Type#15",
"source": "variable
:
enabld: mutable boo#lea"n = true",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/variables.txt/Variable with Object Type#1",
"source": "varables:
data: mutable object =# {}>",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/variables.txt/Variable with Nested Properties#12",
"source": "variables:
user_name: mutable string = "john"
description: "The user's name"
label: "User Name"
age: mutable number = 25
description* "User age"",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/variables.txt/Variables Block with Comments#11",
"source": "variables:
# This is a comment
name: mutable string = "test"
# Another co
mmet",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/voice.txt/Voice Block - Basic Configuration#5",
"source": "voie :
voice_i: "EQx6HGDYjkDpcli6vorJ"",
},
{
"category": "disagree (js=false ts=true)",
"key": "corpus/voice.txt/Voice Block - Additional Configs with Numbers#3",
"source": "vAoice:
additional_configs:
speak_up_config:
speak_up_first_wait_time_ms: 10000
speak_up_follow_u|p_wait_time_ms: 500
speak_up_message: "Are you there?"",
},
{
"category": "disagree (js=true ts=false)",
"key": "parser-javascript/comment_after_colon.txt/Comment after colon with no value#11",
"source": "topic fo:
lbel: # a comment
description: "he
l o"",
},
{
"category": "disagree (js=true ts=false)",
"key": "parser-javascript/comment_indentation.txt/Comment at lower indent between block fields keeps block intact#3",
"source": "start_agent topic_selector:
label: "Topic Selector"
#foo
description: "hello<"",
},
{
"category": "disagree (js=true ts=false)",
"key": "parser-javascript/comment_indentation.txt/Comment at column zero between nested fields keeps block intact#4",
"source": "config:
developer_name: "foo"
# a c<omment
agent_label: "bar"",
},
{
"category": "disagree (js=true ts=false)",
"key": "parser-javascript/comment_indentation.txt/Comment at column zero between nested fields keeps block intact#10",
"source": "config:
developer_name: "foo"
# a /comment