@@ -112,7 +112,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
112
112
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
113
113
object ::= "{" space ( string ":" space value ("," space string ":" space value)* )? "}" space
114
114
root ::= object
115
- space ::= " "?
115
+ space ::= | " " | "\n" [ \t]{0,20}
116
116
string ::= "\"" char* "\"" space
117
117
value ::= object | array | string | number | boolean | null
118
118
)"""
@@ -135,7 +135,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
135
135
date-time ::= date "T" time
136
136
date-time-string ::= "\"" date-time "\"" space
137
137
root ::= "[" space tuple-0 "," space uuid "," space tuple-2 "," space tuple-3 "]" space
138
- space ::= " "?
138
+ space ::= | " " | "\n" [ \t]{0,20}
139
139
time ::= ([01] [0-9] | "2" [0-3]) ":" [0-5] [0-9] ":" [0-5] [0-9] ( "." [0-9]{3} )? ( "Z" | ( "+" | "-" ) ( [01] [0-9] | "2" [0-3] ) ":" [0-5] [0-9] )
140
140
time-string ::= "\"" time "\"" space
141
141
tuple-0 ::= date-string
@@ -154,7 +154,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
154
154
R"""(
155
155
char ::= [^"\\\x7F\x00-\x1F] | [\\] (["\\bfnrt] | "u" [0-9a-fA-F]{4})
156
156
root ::= "\"" char* "\"" space
157
- space ::= " "?
157
+ space ::= | " " | "\n" [ \t]{0,20}
158
158
)"""
159
159
});
160
160
@@ -168,7 +168,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
168
168
R"""(
169
169
char ::= [^"\\\x7F\x00-\x1F] | [\\] (["\\bfnrt] | "u" [0-9a-fA-F]{4})
170
170
root ::= "\"" char+ "\"" space
171
- space ::= " "?
171
+ space ::= | " " | "\n" [ \t]{0,20}
172
172
)"""
173
173
});
174
174
@@ -182,7 +182,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
182
182
R"""(
183
183
char ::= [^"\\\x7F\x00-\x1F] | [\\] (["\\bfnrt] | "u" [0-9a-fA-F]{4})
184
184
root ::= "\"" char{3,} "\"" space
185
- space ::= " "?
185
+ space ::= | " " | "\n" [ \t]{0,20}
186
186
)"""
187
187
});
188
188
@@ -196,7 +196,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
196
196
R"""(
197
197
char ::= [^"\\\x7F\x00-\x1F] | [\\] (["\\bfnrt] | "u" [0-9a-fA-F]{4})
198
198
root ::= "\"" char{0,3} "\"" space
199
- space ::= " "?
199
+ space ::= | " " | "\n" [ \t]{0,20}
200
200
)"""
201
201
});
202
202
@@ -211,7 +211,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
211
211
R"""(
212
212
char ::= [^"\\\x7F\x00-\x1F] | [\\] (["\\bfnrt] | "u" [0-9a-fA-F]{4})
213
213
root ::= "\"" char{1,4} "\"" space
214
- space ::= " "?
214
+ space ::= | " " | "\n" [ \t]{0,20}
215
215
)"""
216
216
});
217
217
@@ -223,7 +223,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
223
223
})""" ,
224
224
R"""(
225
225
root ::= ("true" | "false") space
226
- space ::= " "?
226
+ space ::= | " " | "\n" [ \t]{0,20}
227
227
)"""
228
228
});
229
229
@@ -236,7 +236,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
236
236
R"""(
237
237
integral-part ::= [0] | [1-9] [0-9]{0,15}
238
238
root ::= ("-"? integral-part) space
239
- space ::= " "?
239
+ space ::= | " " | "\n" [ \t]{0,20}
240
240
)"""
241
241
});
242
242
@@ -248,7 +248,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
248
248
})""" ,
249
249
R"""(
250
250
root ::= "\"foo\""
251
- space ::= " "?
251
+ space ::= | " " | "\n" [ \t]{0,20}
252
252
)"""
253
253
});
254
254
@@ -260,7 +260,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
260
260
})""" ,
261
261
R"""(
262
262
root ::= "123"
263
- space ::= " "?
263
+ space ::= | " " | "\n" [ \t]{0,20}
264
264
)"""
265
265
});
266
266
@@ -272,7 +272,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
272
272
})""" ,
273
273
R"""(
274
274
root ::= "\"red\"" | "\"amber\"" | "\"green\"" | "null" | "42" | "[\"foo\"]"
275
- space ::= " "?
275
+ space ::= | " " | "\n" [ \t]{0,20}
276
276
)"""
277
277
});
278
278
@@ -285,7 +285,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
285
285
R"""(
286
286
char ::= [^"\\\x7F\x00-\x1F] | [\\] (["\\bfnrt] | "u" [0-9a-fA-F]{4})
287
287
root ::= "[" space string "]" space
288
- space ::= " "?
288
+ space ::= | " " | "\n" [ \t]{0,20}
289
289
string ::= "\"" char* "\"" space
290
290
)"""
291
291
});
@@ -302,7 +302,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
302
302
integral-part ::= [0] | [1-9] [0-9]{0,15}
303
303
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
304
304
root ::= "[" space string "," space number "]" space
305
- space ::= " "?
305
+ space ::= | " " | "\n" [ \t]{0,20}
306
306
string ::= "\"" char* "\"" space
307
307
)"""
308
308
});
@@ -317,7 +317,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
317
317
decimal-part ::= [0-9]{1,16}
318
318
integral-part ::= [0] | [1-9] [0-9]{0,15}
319
319
root ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
320
- space ::= " "?
320
+ space ::= | " " | "\n" [ \t]{0,20}
321
321
)"""
322
322
});
323
323
@@ -333,7 +333,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
333
333
R"""(
334
334
boolean ::= ("true" | "false") space
335
335
root ::= "[" space boolean ("," space boolean)+ "]" space
336
- space ::= " "?
336
+ space ::= | " " | "\n" [ \t]{0,20}
337
337
)"""
338
338
});
339
339
@@ -349,7 +349,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
349
349
R"""(
350
350
boolean ::= ("true" | "false") space
351
351
root ::= "[" space boolean? "]" space
352
- space ::= " "?
352
+ space ::= | " " | "\n" [ \t]{0,20}
353
353
)"""
354
354
});
355
355
@@ -365,7 +365,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
365
365
R"""(
366
366
boolean ::= ("true" | "false") space
367
367
root ::= "[" space (boolean ("," space boolean)?)? "]" space
368
- space ::= " "?
368
+ space ::= | " " | "\n" [ \t]{0,20}
369
369
)"""
370
370
});
371
371
@@ -386,7 +386,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
386
386
item ::= number | integer
387
387
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
388
388
root ::= "[" space item ("," space item){2,4} "]" space
389
- space ::= " "?
389
+ space ::= | " " | "\n" [ \t]{0,20}
390
390
)"""
391
391
});
392
392
@@ -399,7 +399,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
399
399
})""" ,
400
400
R"""(
401
401
root ::= "\"" "ab" "c"? "d"* "ef" "g"+ ("hij")? "kl" "\"" space
402
- space ::= " "?
402
+ space ::= | " " | "\n" [ \t]{0,20}
403
403
)"""
404
404
});
405
405
@@ -412,7 +412,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
412
412
})""" ,
413
413
R"""(
414
414
root ::= "\"" "[]{}()|+*?" "\"" space
415
- space ::= " "?
415
+ space ::= | " " | "\n" [ \t]{0,20}
416
416
)"""
417
417
});
418
418
@@ -425,7 +425,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
425
425
})""" ,
426
426
R"""(
427
427
root ::= "\"" "\"" "\"" space
428
- space ::= " "?
428
+ space ::= | " " | "\n" [ \t]{0,20}
429
429
)"""
430
430
});
431
431
@@ -440,7 +440,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
440
440
dot ::= [^\x0A\x0D]
441
441
root ::= "\"" ("(" root-1{1,3} ")")? root-1{3,3} "-" root-1{4,4} " " "a"{3,5} "nd" dot dot dot "\"" space
442
442
root-1 ::= [0-9]
443
- space ::= " "?
443
+ space ::= | " " | "\n" [ \t]{0,20}
444
444
)"""
445
445
});
446
446
@@ -468,7 +468,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
468
468
c-kv ::= "\"c\"" space ":" space string
469
469
char ::= [^"\\\x7F\x00-\x1F] | [\\] (["\\bfnrt] | "u" [0-9a-fA-F]{4})
470
470
root ::= "{" space b-kv "," space c-kv "," space a-kv "}" space
471
- space ::= " "?
471
+ space ::= | " " | "\n" [ \t]{0,20}
472
472
string ::= "\"" char* "\"" space
473
473
)"""
474
474
});
@@ -488,7 +488,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
488
488
a-kv ::= "\"a\"" space ":" space string
489
489
char ::= [^"\\\x7F\x00-\x1F] | [\\] (["\\bfnrt] | "u" [0-9a-fA-F]{4})
490
490
root ::= "{" space (a-kv )? "}" space
491
- space ::= " "?
491
+ space ::= | " " | "\n" [ \t]{0,20}
492
492
string ::= "\"" char* "\"" space
493
493
)"""
494
494
});
@@ -512,7 +512,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
512
512
c-kv ::= "\"c\"" space ":" space string
513
513
char ::= [^"\\\x7F\x00-\x1F] | [\\] (["\\bfnrt] | "u" [0-9a-fA-F]{4})
514
514
root ::= "{" space (a-kv a-rest | b-kv b-rest | c-kv )? "}" space
515
- space ::= " "?
515
+ space ::= | " " | "\n" [ \t]{0,20}
516
516
string ::= "\"" char* "\"" space
517
517
)"""
518
518
});
@@ -538,7 +538,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
538
538
d-kv ::= "\"d\"" space ":" space string
539
539
d-rest ::= ( "," space c-kv )?
540
540
root ::= "{" space b-kv "," space a-kv ( "," space ( d-kv d-rest | c-kv ) )? "}" space
541
- space ::= " "?
541
+ space ::= | " " | "\n" [ \t]{0,20}
542
542
string ::= "\"" char* "\"" space
543
543
)"""
544
544
});
@@ -559,7 +559,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
559
559
integral-part ::= [0] | [1-9] [0-9]{0,15}
560
560
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
561
561
root ::= "{" space (additional-kvs )? "}" space
562
- space ::= " "?
562
+ space ::= | " " | "\n" [ \t]{0,20}
563
563
string ::= "\"" char* "\"" space
564
564
)"""
565
565
});
@@ -581,7 +581,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
581
581
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
582
582
object ::= "{" space ( string ":" space value ("," space string ":" space value)* )? "}" space
583
583
root ::= object
584
- space ::= " "?
584
+ space ::= | " " | "\n" [ \t]{0,20}
585
585
string ::= "\"" char* "\"" space
586
586
value ::= object | array | string | number | boolean | null
587
587
)"""
@@ -603,7 +603,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
603
603
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
604
604
object ::= "{" space ( string ":" space value ("," space string ":" space value)* )? "}" space
605
605
root ::= object
606
- space ::= " "?
606
+ space ::= | " " | "\n" [ \t]{0,20}
607
607
string ::= "\"" char* "\"" space
608
608
value ::= object | array | string | number | boolean | null
609
609
)"""
@@ -618,7 +618,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
618
618
})""" ,
619
619
R"""(
620
620
root ::= "{" space "}" space
621
- space ::= " "?
621
+ space ::= | " " | "\n" [ \t]{0,20}
622
622
)"""
623
623
});
624
624
@@ -642,7 +642,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
642
642
integral-part ::= [0] | [1-9] [0-9]{0,15}
643
643
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
644
644
root ::= "{" space a-kv ( "," space ( additional-kvs ) )? "}" space
645
- space ::= " "?
645
+ space ::= | " " | "\n" [ \t]{0,20}
646
646
string ::= "\"" char* "\"" space
647
647
)"""
648
648
});
@@ -667,7 +667,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
667
667
integral-part ::= [0] | [1-9] [0-9]{0,15}
668
668
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
669
669
root ::= "{" space (a-kv a-rest | additional-kvs )? "}" space
670
- space ::= " "?
670
+ space ::= | " " | "\n" [ \t]{0,20}
671
671
string ::= "\"" char* "\"" space
672
672
)"""
673
673
});
@@ -695,7 +695,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
695
695
integral-part ::= [0] | [1-9] [0-9]{0,15}
696
696
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
697
697
root ::= "{" space a-kv ( "," space ( b-kv b-rest | additional-kvs ) )? "}" space
698
- space ::= " "?
698
+ space ::= | " " | "\n" [ \t]{0,20}
699
699
string ::= "\"" char* "\"" space
700
700
)"""
701
701
});
@@ -725,7 +725,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
725
725
foo ::= "{" space foo-a-kv "}" space
726
726
foo-a-kv ::= "\"a\"" space ":" space string
727
727
root ::= foo
728
- space ::= " "?
728
+ space ::= | " " | "\n" [ \t]{0,20}
729
729
string ::= "\"" char* "\"" space
730
730
)"""
731
731
});
@@ -759,7 +759,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
759
759
integral-part ::= [0] | [1-9] [0-9]{0,15}
760
760
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
761
761
root ::= alternative-0 | alternative-1
762
- space ::= " "?
762
+ space ::= | " " | "\n" [ \t]{0,20}
763
763
)"""
764
764
});
765
765
@@ -803,7 +803,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
803
803
integral-part ::= [0] | [1-9] [0-9]{0,15}
804
804
number ::= ("-"? integral-part) ("." decimal-part)? ([eE] [-+]? integral-part)? space
805
805
root ::= "{" space a-kv "," space b-kv ( "," space ( d-kv d-rest | c-kv ) )? "}" space
806
- space ::= " "?
806
+ space ::= | " " | "\n" [ \t]{0,20}
807
807
)"""
808
808
});
809
809
@@ -851,7 +851,7 @@ static void test_all(const std::string & lang, std::function<void(const TestCase
851
851
number-number-kv ::= "\"number\"" space ":" space number-number
852
852
number-number-root-kv ::= "\"root\"" space ":" space number
853
853
root ::= "{" space number-kv "}" space
854
- space ::= " "?
854
+ space ::= | " " | "\n" [ \t]{0,20}
855
855
)"""
856
856
});
857
857
}
0 commit comments