-
Notifications
You must be signed in to change notification settings - Fork 0
/
diagram.xhtml
3513 lines (3458 loc) · 209 KB
/
diagram.xhtml
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<meta name="generator" content="Railroad Diagram Generator 1.48.1593" /><style type="text/css">
::-moz-selection
{
color: #FFFCF0;
background: #0F0C00;
}
::selection
{
color: #FFFCF0;
background: #0F0C00;
}
.ebnf a
{
text-decoration: none;
}
.ebnf a:hover
{
color: #050400;
text-decoration: underline;
}
.signature
{
color: #806600;
font-size: 11px;
text-align: right;
}
body
{
font: normal 12px Verdana, sans-serif;
color: #0F0C00;
background: #FFFCF0;
}
a:link, a:visited
{
color: #0F0C00;
}
a:link.signature, a:visited.signature
{
color: #806600;
}
a.button, #tabs li a
{
padding: 0.25em 0.5em;
border: 1px solid #806600;
background: #F1E8C6;
color: #806600;
text-decoration: none;
font-weight: bold;
}
a.button:hover, #tabs li a:hover
{
color: #050400;
background: #FFF6D1;
border-color: #050400;
}
#tabs
{
padding: 3px 10px;
margin-left: 0;
margin-top: 58px;
border-bottom: 1px solid #0F0C00;
}
#tabs li
{
list-style: none;
margin-left: 5px;
display: inline;
}
#tabs li a
{
border-bottom: 1px solid #0F0C00;
}
#tabs li a.active
{
color: #0F0C00;
background: #FFFCF0;
border-color: #0F0C00;
border-bottom: 1px solid #FFFCF0;
outline: none;
}
#divs div
{
display: none;
overflow:auto;
}
#divs div.active
{
display: block;
}
#text
{
border-color: #806600;
background: #FFFEFA;
color: #050400;
}
.small
{
vertical-align: top;
text-align: right;
font-size: 9px;
font-weight: normal;
line-height: 120%;
}
td.small
{
padding-top: 0px;
}
.hidden
{
visibility: hidden;
}
td:hover .hidden
{
visibility: visible;
}
div.download
{
display: none;
background: #FFFCF0;
position: absolute;
right: 34px;
top: 94px;
padding: 10px;
border: 1px dotted #0F0C00;
}
#divs div.ebnf, div.ebnf
{
display: block;
padding-left: 16px;
padding-top: 2px;
padding-bottom: 2px;
background: #FFF6D1;
}
tr.option-line td:first-child
{
text-align: right
}
tr.option-text td
{
padding-bottom: 10px
}
table.palette
{
border-top: 1px solid #050400;
border-right: 1px solid #050400;
margin-bottom: 4px
}
td.palette
{
border-bottom: 1px solid #050400;
border-left: 1px solid #050400;
}
a.palette
{
padding: 2px 3px 2px 10px;
text-decoration: none;
}
.palette
{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
}
</style><svg xmlns="http://www.w3.org/2000/svg">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
</svg>
</head>
<body>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="document">document:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="158" height="80">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#header" xlink:title="header">
<rect x="51" y="3" width="60" height="32"/>
<rect x="49" y="1" width="60" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">header</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#text" xlink:title="text">
<rect x="51" y="47" width="44" height="32"/>
<rect x="49" y="45" width="44" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="65">text</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m60 0 h10 m-100 0 h20 m80 0 h20 m-120 0 q10 0 10 10 m100 0 q0 -10 10 -10 m-110 10 v24 m100 0 v-24 m-100 24 q0 10 10 10 m80 0 q10 0 10 -10 m-90 10 h10 m44 0 h10 m0 0 h16 m23 -44 h-3"/>
<polygon points="149 17 157 13 157 21"/>
<polygon points="149 17 141 13 141 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#document" title="document">document</a> ::= <a href="#header" title="header">header</a>
| <a href="#text" title="text">text</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">no references</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="header">header:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="302" height="36">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<rect x="31" y="3" width="118" height="32" rx="10"/>
<rect x="29" y="1" width="118" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="21">___header___</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#statement_list" xlink:title="statement_list">
<rect x="169" y="3" width="106" height="32"/>
<rect x="167" y="1" width="106" height="32" class="nonterminal"/>
<text class="nonterminal" x="177" y="21">statement_list</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m118 0 h10 m0 0 h10 m106 0 h10 m3 0 h-3"/>
<polygon points="293 17 301 13 301 21"/>
<polygon points="293 17 285 13 285 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#header" title="header">header</a> ::= '___header___' <a href="#statement_list" title="statement_list">statement_list</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#document" title="document">document</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="statement_list">statement_list:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="182" height="56">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 51 1 47 1 55"/>
<polygon points="17 51 9 47 9 55"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#declaration" xlink:title="declaration">
<rect x="51" y="3" width="84" height="32"/>
<rect x="49" y="1" width="84" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">declaration</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 51 h2 m20 0 h10 m0 0 h94 m-124 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m104 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-104 0 h10 m84 0 h10 m23 34 h-3"/>
<polygon points="173 51 181 47 181 55"/>
<polygon points="173 51 165 47 165 55"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#statement_list" title="statement_list">statement_list</a>
::= <a href="#declaration" title="declaration">declaration</a>*</xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#header" title="header">header</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="declaration">declaration:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="246" height="168">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#basic_definition" xlink:title="basic_definition">
<rect x="51" y="3" width="110" height="32"/>
<rect x="49" y="1" width="110" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">basic_definition</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#file_definition" xlink:title="file_definition">
<rect x="51" y="47" width="96" height="32"/>
<rect x="49" y="45" width="96" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="65">file_definition</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#namespace_definition" xlink:title="namespace_definition">
<rect x="51" y="91" width="148" height="32"/>
<rect x="49" y="89" width="148" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="109">namespace_definition</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#alias_definition" xlink:title="alias_definition">
<rect x="51" y="135" width="106" height="32"/>
<rect x="49" y="133" width="106" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="153">alias_definition</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m110 0 h10 m0 0 h38 m-188 0 h20 m168 0 h20 m-208 0 q10 0 10 10 m188 0 q0 -10 10 -10 m-198 10 v24 m188 0 v-24 m-188 24 q0 10 10 10 m168 0 q10 0 10 -10 m-178 10 h10 m96 0 h10 m0 0 h52 m-178 -10 v20 m188 0 v-20 m-188 20 v24 m188 0 v-24 m-188 24 q0 10 10 10 m168 0 q10 0 10 -10 m-178 10 h10 m148 0 h10 m-178 -10 v20 m188 0 v-20 m-188 20 v24 m188 0 v-24 m-188 24 q0 10 10 10 m168 0 q10 0 10 -10 m-178 10 h10 m106 0 h10 m0 0 h42 m23 -132 h-3"/>
<polygon points="237 17 245 13 245 21"/>
<polygon points="237 17 229 13 229 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#declaration" title="declaration">declaration</a>
::= <a href="#basic_definition" title="basic_definition">basic_definition</a>
| <a href="#file_definition" title="file_definition">file_definition</a>
| <a href="#namespace_definition" title="namespace_definition">namespace_definition</a>
| <a href="#alias_definition" title="alias_definition">alias_definition</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#statement_list" title="statement_list">statement_list</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="basic_definition">basic_definition:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="374" height="36">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#left_name" xlink:title="left_name">
<rect x="31" y="3" width="80" height="32"/>
<rect x="29" y="1" width="80" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">left_name</text>
</a>
<rect x="131" y="3" width="24" height="32" rx="10"/>
<rect x="129" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="139" y="21">:</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#options" xlink:title="options">
<rect x="175" y="3" width="64" height="32"/>
<rect x="173" y="1" width="64" height="32" class="nonterminal"/>
<text class="nonterminal" x="183" y="21">options</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#basic_value" xlink:title="basic_value">
<rect x="259" y="3" width="88" height="32"/>
<rect x="257" y="1" width="88" height="32" class="nonterminal"/>
<text class="nonterminal" x="267" y="21">basic_value</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m80 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m64 0 h10 m0 0 h10 m88 0 h10 m3 0 h-3"/>
<polygon points="365 17 373 13 373 21"/>
<polygon points="365 17 357 13 357 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#basic_definition" title="basic_definition">basic_definition</a>
::= <a href="#left_name" title="left_name">left_name</a> ':' <a href="#options" title="options">options</a> <a href="#basic_value" title="basic_value">basic_value</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#declaration" title="declaration">declaration</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="file_definition">file_definition:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="430" height="36">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#left_name" xlink:title="left_name">
<rect x="31" y="3" width="80" height="32"/>
<rect x="29" y="1" width="80" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">left_name</text>
</a>
<rect x="131" y="3" width="24" height="32" rx="10"/>
<rect x="129" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="139" y="21">:</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#options" xlink:title="options">
<rect x="175" y="3" width="64" height="32"/>
<rect x="173" y="1" width="64" height="32" class="nonterminal"/>
<text class="nonterminal" x="183" y="21">options</text>
</a>
<rect x="259" y="3" width="38" height="32" rx="10"/>
<rect x="257" y="1" width="38" height="32" class="terminal" rx="10"/>
<text class="terminal" x="267" y="21">file</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#path_value" xlink:title="path_value">
<rect x="317" y="3" width="86" height="32"/>
<rect x="315" y="1" width="86" height="32" class="nonterminal"/>
<text class="nonterminal" x="325" y="21">path_value</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m80 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m64 0 h10 m0 0 h10 m38 0 h10 m0 0 h10 m86 0 h10 m3 0 h-3"/>
<polygon points="421 17 429 13 429 21"/>
<polygon points="421 17 413 13 413 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#file_definition" title="file_definition">file_definition</a>
::= <a href="#left_name" title="left_name">left_name</a> ':' <a href="#options" title="options">options</a> 'file' <a href="#path_value" title="path_value">path_value</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#declaration" title="declaration">declaration</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="namespace_definition">namespace_definition:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="412" height="36">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#left_name" xlink:title="left_name">
<rect x="31" y="3" width="80" height="32"/>
<rect x="29" y="1" width="80" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">left_name</text>
</a>
<rect x="131" y="3" width="24" height="32" rx="10"/>
<rect x="129" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="139" y="21">:</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#options" xlink:title="options">
<rect x="175" y="3" width="64" height="32"/>
<rect x="173" y="1" width="64" height="32" class="nonterminal"/>
<text class="nonterminal" x="183" y="21">options</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#namespace_value" xlink:title="namespace_value">
<rect x="259" y="3" width="126" height="32"/>
<rect x="257" y="1" width="126" height="32" class="nonterminal"/>
<text class="nonterminal" x="267" y="21">namespace_value</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m80 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m64 0 h10 m0 0 h10 m126 0 h10 m3 0 h-3"/>
<polygon points="403 17 411 13 411 21"/>
<polygon points="403 17 395 13 395 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#namespace_definition" title="namespace_definition">namespace_definition</a>
::= <a href="#left_name" title="left_name">left_name</a> ':' <a href="#options" title="options">options</a> <a href="#namespace_value" title="namespace_value">namespace_value</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#declaration" title="declaration">declaration</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="alias_definition">alias_definition:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="436" height="68">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#left_name" xlink:title="left_name">
<rect x="31" y="3" width="80" height="32"/>
<rect x="29" y="1" width="80" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">left_name</text>
</a>
<rect x="131" y="3" width="24" height="32" rx="10"/>
<rect x="129" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="139" y="21">:</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#lang_option" xlink:title="lang_option">
<rect x="195" y="35" width="90" height="32"/>
<rect x="193" y="33" width="90" height="32" class="nonterminal"/>
<text class="nonterminal" x="203" y="53">lang_option</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#alias_value" xlink:title="alias_value">
<rect x="325" y="3" width="84" height="32"/>
<rect x="323" y="1" width="84" height="32" class="nonterminal"/>
<text class="nonterminal" x="333" y="21">alias_value</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m80 0 h10 m0 0 h10 m24 0 h10 m20 0 h10 m0 0 h100 m-130 0 h20 m110 0 h20 m-150 0 q10 0 10 10 m130 0 q0 -10 10 -10 m-140 10 v12 m130 0 v-12 m-130 12 q0 10 10 10 m110 0 q10 0 10 -10 m-120 10 h10 m90 0 h10 m20 -32 h10 m84 0 h10 m3 0 h-3"/>
<polygon points="427 17 435 13 435 21"/>
<polygon points="427 17 419 13 419 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#alias_definition" title="alias_definition">alias_definition</a>
::= <a href="#left_name" title="left_name">left_name</a> ':' <a href="#lang_option" title="lang_option">lang_option</a>? <a href="#alias_value" title="alias_value">alias_value</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#declaration" title="declaration">declaration</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="basic_value">basic_value:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="410" height="134">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 67 1 63 1 71"/>
<polygon points="17 67 9 63 9 71"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#simple_text_value" xlink:title="simple_text_value">
<rect x="111" y="19" width="128" height="32"/>
<rect x="109" y="17" width="128" height="32" class="nonterminal"/>
<text class="nonterminal" x="119" y="37">simple_text_value</text>
</a>
<rect x="91" y="85" width="28" height="32" rx="10"/>
<rect x="89" y="83" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="99" y="103">{</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#programmatic_part" xlink:title="programmatic_part">
<rect x="139" y="85" width="136" height="32"/>
<rect x="137" y="83" width="136" height="32" class="nonterminal"/>
<text class="nonterminal" x="147" y="103">programmatic_part</text>
</a>
<rect x="295" y="85" width="28" height="32" rx="10"/>
<rect x="293" y="83" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="303" y="103">}</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 67 h2 m80 0 h10 m0 0 h138 m-168 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m148 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-148 0 h10 m128 0 h10 m20 34 h64 m-272 0 h20 m252 0 h20 m-292 0 q10 0 10 10 m272 0 q0 -10 10 -10 m-282 10 v12 m272 0 v-12 m-272 12 q0 10 10 10 m252 0 q10 0 10 -10 m-262 10 h10 m28 0 h10 m0 0 h10 m136 0 h10 m0 0 h10 m28 0 h10 m-292 -32 l20 0 m-1 0 q-9 0 -9 -10 l0 -46 q0 -10 10 -10 m292 66 l20 0 m-20 0 q10 0 10 -10 l0 -46 q0 -10 -10 -10 m-292 0 h10 m0 0 h282 m-332 66 h20 m332 0 h20 m-372 0 q10 0 10 10 m352 0 q0 -10 10 -10 m-362 10 v46 m352 0 v-46 m-352 46 q0 10 10 10 m332 0 q10 0 10 -10 m-342 10 h10 m0 0 h322 m23 -66 h-3"/>
<polygon points="401 67 409 63 409 71"/>
<polygon points="401 67 393 63 393 71"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#basic_value" title="basic_value">basic_value</a>
::= ( <a href="#simple_text_value" title="simple_text_value">simple_text_value</a>* | '{' <a href="#programmatic_part" title="programmatic_part">programmatic_part</a> '}' )*</xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#basic_definition" title="basic_definition">basic_definition</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#condition" title="condition">condition</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#loop" title="loop">loop</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="simple_text_value">simple_text_value:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="144" height="144">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 139 1 135 1 143"/>
<polygon points="17 139 9 135 9 143"/>
<rect x="51" y="91" width="28" height="32" rx="10"/>
<rect x="49" y="89" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="109">*</text>
<rect x="51" y="47" width="46" height="32" rx="10"/>
<rect x="49" y="45" width="46" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="65">EOL</text>
<rect x="51" y="3" width="46" height="32" rx="10"/>
<rect x="49" y="1" width="46" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="21">TAB</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 139 h2 m20 0 h10 m0 0 h56 m-86 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m66 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-66 0 h10 m28 0 h10 m0 0 h18 m-76 10 l0 -44 q0 -10 10 -10 m76 54 l0 -44 q0 -10 -10 -10 m-66 0 h10 m46 0 h10 m-76 10 l0 -44 q0 -10 10 -10 m76 54 l0 -44 q0 -10 -10 -10 m-66 0 h10 m46 0 h10 m23 122 h-3"/>
<polygon points="135 139 143 135 143 143"/>
<polygon points="135 139 127 135 127 143"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#simple_text_value" title="simple_text_value">simple_text_value</a>
::= ( '*' | 'EOL' | 'TAB' )*</xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#basic_value" title="basic_value">basic_value</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#text_value" title="text_value">text_value</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="programmatic_part">programmatic_part:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="240" height="212">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#variable_declaration" xlink:title="variable_declaration">
<rect x="51" y="3" width="138" height="32"/>
<rect x="49" y="1" width="138" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">variable_declaration</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#variable_assignment" xlink:title="variable_assignment">
<rect x="51" y="47" width="142" height="32"/>
<rect x="49" y="45" width="142" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="65">variable_assignment</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#expr" xlink:title="expr">
<rect x="51" y="91" width="46" height="32"/>
<rect x="49" y="89" width="46" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="109">expr</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#loop" xlink:title="loop">
<rect x="51" y="135" width="46" height="32"/>
<rect x="49" y="133" width="46" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="153">loop</text>
</a>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#condition" xlink:title="condition">
<rect x="51" y="179" width="74" height="32"/>
<rect x="49" y="177" width="74" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="197">condition</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m138 0 h10 m0 0 h4 m-182 0 h20 m162 0 h20 m-202 0 q10 0 10 10 m182 0 q0 -10 10 -10 m-192 10 v24 m182 0 v-24 m-182 24 q0 10 10 10 m162 0 q10 0 10 -10 m-172 10 h10 m142 0 h10 m-172 -10 v20 m182 0 v-20 m-182 20 v24 m182 0 v-24 m-182 24 q0 10 10 10 m162 0 q10 0 10 -10 m-172 10 h10 m46 0 h10 m0 0 h96 m-172 -10 v20 m182 0 v-20 m-182 20 v24 m182 0 v-24 m-182 24 q0 10 10 10 m162 0 q10 0 10 -10 m-172 10 h10 m46 0 h10 m0 0 h96 m-172 -10 v20 m182 0 v-20 m-182 20 v24 m182 0 v-24 m-182 24 q0 10 10 10 m162 0 q10 0 10 -10 m-172 10 h10 m74 0 h10 m0 0 h68 m23 -176 h-3"/>
<polygon points="231 17 239 13 239 21"/>
<polygon points="231 17 223 13 223 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#programmatic_part" title="programmatic_part">programmatic_part</a>
::= <a href="#variable_declaration" title="variable_declaration">variable_declaration</a>
| <a href="#variable_assignment" title="variable_assignment">variable_assignment</a>
| <a href="#expr" title="expr">expr</a>
| <a href="#loop" title="loop">loop</a>
| <a href="#condition" title="condition">condition</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#basic_value" title="basic_value">basic_value</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="variable_declaration">variable_declaration:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="444" height="36">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#variable_name" xlink:title="variable_name">
<rect x="31" y="3" width="106" height="32"/>
<rect x="29" y="1" width="106" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">variable_name</text>
</a>
<rect x="157" y="3" width="30" height="32" rx="10"/>
<rect x="155" y="1" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="165" y="21">=</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#expr" xlink:title="expr">
<rect x="207" y="3" width="46" height="32"/>
<rect x="205" y="1" width="46" height="32" class="nonterminal"/>
<text class="nonterminal" x="215" y="21">expr</text>
</a>
<rect x="273" y="3" width="24" height="32" rx="10"/>
<rect x="271" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="281" y="21">,</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#variable_type" xlink:title="variable_type">
<rect x="317" y="3" width="100" height="32"/>
<rect x="315" y="1" width="100" height="32" class="nonterminal"/>
<text class="nonterminal" x="325" y="21">variable_type</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m106 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m46 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m100 0 h10 m3 0 h-3"/>
<polygon points="435 17 443 13 443 21"/>
<polygon points="435 17 427 13 427 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#variable_declaration" title="variable_declaration">variable_declaration</a>
::= <a href="#variable_name" title="variable_name">variable_name</a> '=' <a href="#expr" title="expr">expr</a> ',' <a href="#variable_type" title="variable_type">variable_type</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#programmatic_part" title="programmatic_part">programmatic_part</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="variable_assignment">variable_assignment:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="250" height="36">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #141000; shape-rendering: crispEdges; stroke-width:
2; }
.thin-line {stroke: #1F1800; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text.terminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #141000;
font-weight: bold;
}
text.nonterminal {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1A1400;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900;}
</style>
</defs>
<polygon points="9 17 1 13 1 21"/>
<polygon points="17 17 9 13 9 21"/>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#reference" xlink:title="reference">
<rect x="31" y="3" width="76" height="32"/>
<rect x="29" y="1" width="76" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">reference</text>
</a>
<rect x="127" y="3" width="30" height="32" rx="10"/>
<rect x="125" y="1" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="135" y="21">=</text>
<a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#expr" xlink:title="expr">
<rect x="177" y="3" width="46" height="32"/>
<rect x="175" y="1" width="46" height="32" class="nonterminal"/>
<text class="nonterminal" x="185" y="21">expr</text>
</a>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m76 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m46 0 h10 m3 0 h-3"/>
<polygon points="241 17 249 13 249 21"/>
<polygon points="241 17 233 13 233 21"/>
</svg>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">
<xhtml:div class="ebnf"><xhtml:pre><a href="#variable_assignment" title="variable_assignment">variable_assignment</a>
::= <a href="#reference" title="reference">reference</a> '=' <a href="#expr" title="expr">expr</a></xhtml:pre></xhtml:div>
</xhtml:p>
<xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#programmatic_part" title="programmatic_part">programmatic_part</xhtml:a></xhtml:li>
</xhtml:ul>
</xhtml:p><xhtml:br xmlns:xhtml="http://www.w3.org/1999/xhtml" /><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml" style="font-size: 14px; font-weight:bold"><xhtml:a name="expr">expr:</xhtml:a></xhtml:p>
<svg xmlns="http://www.w3.org/2000/svg" width="146" height="168">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}