-
Notifications
You must be signed in to change notification settings - Fork 5
/
G-Pascal syntax diagram.xhtml
executable file
·1819 lines (1819 loc) · 137 KB
/
G-Pascal syntax 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.63" />
<style type="text/css">
::-moz-selection
{
color: #FFFCF0;
background: #0F0C00;
}
::selection
{
color: #FFFCF0;
background: #0F0C00;
}
.ebnf a, .grammar a
{
text-decoration: none;
}
.ebnf a:hover, .grammar 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, .ebnf code
{
display: block;
padding: 10px;
background: #FFF6D1;
width: 992px;
}
#divs div.grammar
{
display: block;
padding-left: 16px;
padding-top: 2px;
padding-bottom: 2px;
background: #FFF6D1;
}
pre
{
margin: 0px;
}
.ebnf div
{
padding-left: 13ch;
text-indent: -13ch;
}
.ebnf code, .grammar code, textarea, pre
{
font:12px SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;
}
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; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</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="program">program:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="155" height="37">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</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="#block" xlink:title="block">
<rect x="31" y="3" width="52" height="32"/>
<rect x="29" y="1" width="52" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="21">block</text></a><rect x="103" y="3" width="24" height="32" rx="10"/>
<rect x="101" y="1" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="111" y="21">.</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m52 0 h10 m0 0 h10 m24 0 h10 m3 0 h-3"/>
<polygon points="145 17 153 13 153 21"/>
<polygon points="145 17 137 13 137 21"/></svg><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="block">block:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="967" height="567">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs>
<polygon points="9 33 1 29 1 37"/>
<polygon points="17 33 9 29 9 37"/>
<rect x="51" y="19" width="56" height="32" rx="10"/>
<rect x="49" y="17" width="56" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="37">const</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#const_identifier" xlink:title="const_identifier">
<rect x="147" y="19" width="118" height="32"/>
<rect x="145" y="17" width="118" height="32" class="nonterminal"/>
<text class="nonterminal" x="155" y="37">const_identifier</text></a><rect x="285" y="19" width="30" height="32" rx="10"/>
<rect x="283" y="17" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="293" y="37">=</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#constant" xlink:title="constant">
<rect x="335" y="19" width="74" height="32"/>
<rect x="333" y="17" width="74" height="32" class="nonterminal"/>
<text class="nonterminal" x="343" y="37">constant</text></a><rect x="429" y="19" width="24" height="32" rx="10"/>
<rect x="427" y="17" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="437" y="37">;</text>
<rect x="111" y="145" width="42" height="32" rx="10"/>
<rect x="109" y="143" width="42" height="32" class="terminal" rx="10"/>
<text class="terminal" x="119" y="163">var</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#identifier" xlink:title="identifier">
<rect x="193" y="145" width="76" height="32"/>
<rect x="191" y="143" width="76" height="32" class="nonterminal"/>
<text class="nonterminal" x="201" y="163">identifier</text></a><rect x="193" y="101" width="24" height="32" rx="10"/>
<rect x="191" y="99" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="201" y="119">,</text>
<rect x="309" y="145" width="24" height="32" rx="10"/>
<rect x="307" y="143" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="317" y="163">:</text>
<rect x="373" y="177" width="56" height="32" rx="10"/>
<rect x="371" y="175" width="56" height="32" class="terminal" rx="10"/>
<text class="terminal" x="381" y="195">array</text>
<rect x="449" y="177" width="26" height="32" rx="10"/>
<rect x="447" y="175" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="457" y="195">[</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#constant" xlink:title="constant">
<rect x="495" y="177" width="74" height="32"/>
<rect x="493" y="175" width="74" height="32" class="nonterminal"/>
<text class="nonterminal" x="503" y="195">constant</text></a><rect x="589" y="177" width="26" height="32" rx="10"/>
<rect x="587" y="175" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="597" y="195">]</text>
<rect x="635" y="177" width="32" height="32" rx="10"/>
<rect x="633" y="175" width="32" height="32" class="terminal" rx="10"/>
<text class="terminal" x="643" y="195">of</text>
<rect x="727" y="145" width="68" height="32" rx="10"/>
<rect x="725" y="143" width="68" height="32" class="terminal" rx="10"/>
<text class="terminal" x="735" y="163">integer</text>
<rect x="727" y="189" width="50" height="32" rx="10"/>
<rect x="725" y="187" width="50" height="32" class="terminal" rx="10"/>
<text class="terminal" x="735" y="207">char</text>
<rect x="835" y="145" width="24" height="32" rx="10"/>
<rect x="833" y="143" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="843" y="163">;</text>
<rect x="85" y="347" width="88" height="32" rx="10"/>
<rect x="83" y="345" width="88" height="32" class="terminal" rx="10"/>
<text class="terminal" x="93" y="365">procedure</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#procedure_identifier" xlink:title="procedure_identifier">
<rect x="193" y="347" width="148" height="32"/>
<rect x="191" y="345" width="148" height="32" class="nonterminal"/>
<text class="nonterminal" x="201" y="365">procedure_identifier</text></a><rect x="85" y="391" width="74" height="32" rx="10"/>
<rect x="83" y="389" width="74" height="32" class="terminal" rx="10"/>
<text class="terminal" x="93" y="409">function</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#function_identifier" xlink:title="function_identifier">
<rect x="179" y="391" width="134" height="32"/>
<rect x="177" y="389" width="134" height="32" class="nonterminal"/>
<text class="nonterminal" x="187" y="409">function_identifier</text></a><rect x="421" y="347" width="26" height="32" rx="10"/>
<rect x="419" y="345" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="429" y="365">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#identifier" xlink:title="identifier">
<rect x="487" y="347" width="76" height="32"/>
<rect x="485" y="345" width="76" height="32" class="nonterminal"/>
<text class="nonterminal" x="495" y="365">identifier</text></a><rect x="487" y="303" width="24" height="32" rx="10"/>
<rect x="485" y="301" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="495" y="321">,</text>
<rect x="603" y="347" width="26" height="32" rx="10"/>
<rect x="601" y="345" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="611" y="365">)</text>
<rect x="689" y="347" width="24" height="32" rx="10"/>
<rect x="687" y="345" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="697" y="365">;</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#block" xlink:title="block">
<rect x="733" y="347" width="52" height="32"/>
<rect x="731" y="345" width="52" height="32" class="nonterminal"/>
<text class="nonterminal" x="741" y="365">block</text></a><rect x="805" y="347" width="24" height="32" rx="10"/>
<rect x="803" y="345" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="813" y="365">;</text>
<rect x="889" y="347" width="56" height="32" rx="10"/>
<rect x="887" y="345" width="56" height="32" class="terminal" rx="10"/>
<text class="terminal" x="897" y="365">begin</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#statement" xlink:title="statement">
<rect x="749" y="517" width="86" height="32"/>
<rect x="747" y="515" width="86" height="32" class="nonterminal"/>
<text class="nonterminal" x="757" y="535">statement</text></a><rect x="749" y="473" width="24" height="32" rx="10"/>
<rect x="747" y="471" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="757" y="491">;</text>
<rect x="895" y="517" width="44" height="32" rx="10"/>
<rect x="893" y="515" width="44" height="32" class="terminal" rx="10"/>
<text class="terminal" x="903" y="535">end</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m20 0 h10 m56 0 h10 m20 0 h10 m118 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m74 0 h10 m0 0 h10 m24 0 h10 m-346 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m326 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-326 0 h10 m0 0 h316 m-442 32 h20 m442 0 h20 m-482 0 q10 0 10 10 m462 0 q0 -10 10 -10 m-472 10 v14 m462 0 v-14 m-462 14 q0 10 10 10 m442 0 q10 0 10 -10 m-452 10 h10 m0 0 h432 m22 -34 l2 0 m2 0 l2 0 m2 0 l2 0 m-446 126 l2 0 m2 0 l2 0 m2 0 l2 0 m22 0 h10 m42 0 h10 m20 0 h10 m76 0 h10 m-116 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m96 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-96 0 h10 m24 0 h10 m0 0 h52 m20 44 h10 m24 0 h10 m20 0 h10 m0 0 h304 m-334 0 h20 m314 0 h20 m-354 0 q10 0 10 10 m334 0 q0 -10 10 -10 m-344 10 v12 m334 0 v-12 m-334 12 q0 10 10 10 m314 0 q10 0 10 -10 m-324 10 h10 m56 0 h10 m0 0 h10 m26 0 h10 m0 0 h10 m74 0 h10 m0 0 h10 m26 0 h10 m0 0 h10 m32 0 h10 m40 -32 h10 m68 0 h10 m-108 0 h20 m88 0 h20 m-128 0 q10 0 10 10 m108 0 q0 -10 10 -10 m-118 10 v24 m108 0 v-24 m-108 24 q0 10 10 10 m88 0 q10 0 10 -10 m-98 10 h10 m50 0 h10 m0 0 h18 m20 -44 h10 m24 0 h10 m-788 0 h20 m768 0 h20 m-808 0 q10 0 10 10 m788 0 q0 -10 10 -10 m-798 10 v58 m788 0 v-58 m-788 58 q0 10 10 10 m768 0 q10 0 10 -10 m-778 10 h10 m0 0 h758 m22 -78 l2 0 m2 0 l2 0 m2 0 l2 0 m-898 202 l2 0 m2 0 l2 0 m2 0 l2 0 m62 0 h10 m88 0 h10 m0 0 h10 m148 0 h10 m-296 0 h20 m276 0 h20 m-316 0 q10 0 10 10 m296 0 q0 -10 10 -10 m-306 10 v24 m296 0 v-24 m-296 24 q0 10 10 10 m276 0 q10 0 10 -10 m-286 10 h10 m74 0 h10 m0 0 h10 m134 0 h10 m0 0 h28 m60 -44 h10 m26 0 h10 m20 0 h10 m76 0 h10 m-116 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m96 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-96 0 h10 m24 0 h10 m0 0 h52 m20 44 h10 m26 0 h10 m-248 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -56 q0 -10 10 -10 m228 76 l20 0 m-20 0 q10 0 10 -10 l0 -56 q0 -10 -10 -10 m-228 0 h10 m0 0 h218 m-268 76 h20 m268 0 h20 m-308 0 q10 0 10 10 m288 0 q0 -10 10 -10 m-298 10 v14 m288 0 v-14 m-288 14 q0 10 10 10 m268 0 q10 0 10 -10 m-278 10 h10 m0 0 h258 m20 -34 h10 m24 0 h10 m0 0 h10 m52 0 h10 m0 0 h10 m24 0 h10 m-804 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -72 q0 -10 10 -10 m784 92 l20 0 m-20 0 q10 0 10 -10 l0 -72 q0 -10 -10 -10 m-784 0 h10 m0 0 h774 m-824 92 h20 m824 0 h20 m-864 0 q10 0 10 10 m844 0 q0 -10 10 -10 m-854 10 v58 m844 0 v-58 m-844 58 q0 10 10 10 m824 0 q10 0 10 -10 m-834 10 h10 m0 0 h814 m20 -78 h10 m56 0 h10 m2 0 l2 0 m2 0 l2 0 m2 0 l2 0 m-280 170 l2 0 m2 0 l2 0 m2 0 l2 0 m42 0 h10 m86 0 h10 m-126 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m106 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-106 0 h10 m24 0 h10 m0 0 h62 m-146 44 h20 m146 0 h20 m-186 0 q10 0 10 10 m166 0 q0 -10 10 -10 m-176 10 v14 m166 0 v-14 m-166 14 q0 10 10 10 m146 0 q10 0 10 -10 m-156 10 h10 m0 0 h136 m20 -34 h10 m44 0 h10 m3 0 h-3"/>
<polygon points="957 531 965 527 965 535"/>
<polygon points="957 531 949 527 949 535"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#block" title="block">block</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#program" title="program">program</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="expression">expression:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="237" height="301">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs>
<polygon points="9 281 1 277 1 285"/>
<polygon points="17 281 9 277 9 285"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#simple_expression" xlink:title="simple_expression">
<rect x="51" y="267" width="138" height="32"/>
<rect x="49" y="265" width="138" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="285">simple_expression</text></a><rect x="51" y="223" width="30" height="32" rx="10"/>
<rect x="49" y="221" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="241">=</text>
<rect x="51" y="179" width="30" height="32" rx="10"/>
<rect x="49" y="177" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="197"><</text>
<rect x="51" y="135" width="30" height="32" rx="10"/>
<rect x="49" y="133" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="153">></text>
<rect x="51" y="91" width="40" height="32" rx="10"/>
<rect x="49" y="89" width="40" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="109"><></text>
<rect x="51" y="47" width="40" height="32" rx="10"/>
<rect x="49" y="45" width="40" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="65"><=</text>
<rect x="51" y="3" width="40" height="32" rx="10"/>
<rect x="49" y="1" width="40" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="21">>=</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 281 h2 m20 0 h10 m138 0 h10 m-178 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m158 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-158 0 h10 m30 0 h10 m0 0 h108 m-168 10 l0 -44 q0 -10 10 -10 m168 54 l0 -44 q0 -10 -10 -10 m-158 0 h10 m30 0 h10 m0 0 h108 m-168 10 l0 -44 q0 -10 10 -10 m168 54 l0 -44 q0 -10 -10 -10 m-158 0 h10 m30 0 h10 m0 0 h108 m-168 10 l0 -44 q0 -10 10 -10 m168 54 l0 -44 q0 -10 -10 -10 m-158 0 h10 m40 0 h10 m0 0 h98 m-168 10 l0 -44 q0 -10 10 -10 m168 54 l0 -44 q0 -10 -10 -10 m-158 0 h10 m40 0 h10 m0 0 h98 m-168 10 l0 -44 q0 -10 10 -10 m168 54 l0 -44 q0 -10 -10 -10 m-158 0 h10 m40 0 h10 m0 0 h98 m23 264 h-3"/>
<polygon points="227 281 235 277 235 285"/>
<polygon points="227 281 219 277 219 285"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#factor" title="factor">factor</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#statement" title="statement">statement</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#variable" title="variable">variable</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#writeable_expression" title="writeable_expression">writeable_expression</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_expression">simple_expression:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="239" height="245">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs>
<polygon points="9 149 1 145 1 153"/>
<polygon points="17 149 9 145 9 153"/>
<rect x="51" y="167" width="30" height="32" rx="10"/>
<rect x="49" y="165" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="185">+</text>
<rect x="51" y="211" width="26" height="32" rx="10"/>
<rect x="49" y="209" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="229">-</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#term" xlink:title="term">
<rect x="141" y="135" width="50" height="32"/>
<rect x="139" y="133" width="50" height="32" class="nonterminal"/>
<text class="nonterminal" x="149" y="153">term</text></a><rect x="141" y="91" width="30" height="32" rx="10"/>
<rect x="139" y="89" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="149" y="109">+</text>
<rect x="141" y="47" width="26" height="32" rx="10"/>
<rect x="139" y="45" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="149" y="65">-</text>
<rect x="141" y="3" width="34" height="32" rx="10"/>
<rect x="139" y="1" width="34" height="32" class="terminal" rx="10"/>
<text class="terminal" x="149" y="21">or</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 149 h2 m20 0 h10 m0 0 h40 m-70 0 h20 m50 0 h20 m-90 0 q10 0 10 10 m70 0 q0 -10 10 -10 m-80 10 v12 m70 0 v-12 m-70 12 q0 10 10 10 m50 0 q10 0 10 -10 m-60 10 h10 m30 0 h10 m-60 -10 v20 m70 0 v-20 m-70 20 v24 m70 0 v-24 m-70 24 q0 10 10 10 m50 0 q10 0 10 -10 m-60 10 h10 m26 0 h10 m0 0 h4 m40 -76 h10 m50 0 h10 m-90 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m70 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-70 0 h10 m30 0 h10 m0 0 h20 m-80 10 l0 -44 q0 -10 10 -10 m80 54 l0 -44 q0 -10 -10 -10 m-70 0 h10 m26 0 h10 m0 0 h24 m-80 10 l0 -44 q0 -10 10 -10 m80 54 l0 -44 q0 -10 -10 -10 m-70 0 h10 m34 0 h10 m0 0 h16 m23 132 h-3"/>
<polygon points="229 149 237 145 237 153"/>
<polygon points="229 149 221 145 221 153"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#expression" title="expression">expression</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="term">term:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="155" height="301">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs>
<polygon points="9 281 1 277 1 285"/>
<polygon points="17 281 9 277 9 285"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#factor" xlink:title="factor">
<rect x="51" y="267" width="56" height="32"/>
<rect x="49" y="265" width="56" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="285">factor</text></a><rect x="51" y="223" width="28" height="32" rx="10"/>
<rect x="49" y="221" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="241">*</text>
<rect x="51" y="179" width="40" height="32" rx="10"/>
<rect x="49" y="177" width="40" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="197">div</text>
<rect x="51" y="135" width="48" height="32" rx="10"/>
<rect x="49" y="133" width="48" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="153">mod</text>
<rect x="51" y="91" width="44" height="32" rx="10"/>
<rect x="49" y="89" width="44" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="109">and</text>
<rect x="51" y="47" width="40" height="32" rx="10"/>
<rect x="49" y="45" width="40" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="65">shl</text>
<rect x="51" y="3" width="42" height="32" rx="10"/>
<rect x="49" y="1" width="42" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="21">shr</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 281 h2 m20 0 h10 m56 0 h10 m-96 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m76 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-76 0 h10 m28 0 h10 m0 0 h28 m-86 10 l0 -44 q0 -10 10 -10 m86 54 l0 -44 q0 -10 -10 -10 m-76 0 h10 m40 0 h10 m0 0 h16 m-86 10 l0 -44 q0 -10 10 -10 m86 54 l0 -44 q0 -10 -10 -10 m-76 0 h10 m48 0 h10 m0 0 h8 m-86 10 l0 -44 q0 -10 10 -10 m86 54 l0 -44 q0 -10 -10 -10 m-76 0 h10 m44 0 h10 m0 0 h12 m-86 10 l0 -44 q0 -10 10 -10 m86 54 l0 -44 q0 -10 -10 -10 m-76 0 h10 m40 0 h10 m0 0 h16 m-86 10 l0 -44 q0 -10 10 -10 m86 54 l0 -44 q0 -10 -10 -10 m-76 0 h10 m42 0 h10 m0 0 h14 m23 264 h-3"/>
<polygon points="145 281 153 277 153 285"/>
<polygon points="145 281 137 277 137 285"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#simple_expression" title="simple_expression">simple_expression</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="identifier">identifier:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="227" height="159">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs>
<polygon points="9 139 1 135 1 143"/>
<polygon points="17 139 9 135 9 143"/><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#letter" xlink:title="letter">
<rect x="31" y="125" width="54" height="32"/>
<rect x="29" y="123" width="54" height="32" class="nonterminal"/>
<text class="nonterminal" x="39" y="143">letter</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#letter" xlink:title="letter">
<rect x="125" y="91" width="54" height="32"/>
<rect x="123" y="89" width="54" height="32" class="nonterminal"/>
<text class="nonterminal" x="133" y="109">letter</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#digit" xlink:title="digit">
<rect x="125" y="47" width="48" height="32"/>
<rect x="123" y="45" width="48" height="32" class="nonterminal"/>
<text class="nonterminal" x="133" y="65">digit</text></a><rect x="125" y="3" width="28" height="32" rx="10"/>
<rect x="123" y="1" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="133" y="21">_</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 139 h2 m0 0 h10 m54 0 h10 m20 0 h10 m0 0 h64 m-94 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -14 q0 -10 10 -10 m74 34 l20 0 m-20 0 q10 0 10 -10 l0 -14 q0 -10 -10 -10 m-74 0 h10 m54 0 h10 m-84 10 l0 -44 q0 -10 10 -10 m84 54 l0 -44 q0 -10 -10 -10 m-74 0 h10 m48 0 h10 m0 0 h6 m-84 10 l0 -44 q0 -10 10 -10 m84 54 l0 -44 q0 -10 -10 -10 m-74 0 h10 m28 0 h10 m0 0 h26 m23 122 h-3"/>
<polygon points="217 139 225 135 225 143"/>
<polygon points="217 139 209 135 209 143"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#block" title="block">block</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#const_identifier" title="const_identifier">const_identifier</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#function_identifier" title="function_identifier">function_identifier</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#procedure_identifier" title="procedure_identifier">procedure_identifier</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#variable_identifier" title="variable_identifier">variable_identifier</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_identifier">variable_identifier:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="135" height="37">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</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="#identifier" xlink:title="identifier">
<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">identifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m76 0 h10 m3 0 h-3"/>
<polygon points="125 17 133 13 133 21"/>
<polygon points="125 17 117 13 117 21"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#factor" title="factor">factor</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#statement" title="statement">statement</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#variable" title="variable">variable</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="const_identifier">const_identifier:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="135" height="37">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</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="#identifier" xlink:title="identifier">
<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">identifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m76 0 h10 m3 0 h-3"/>
<polygon points="125 17 133 13 133 21"/>
<polygon points="125 17 117 13 117 21"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#block" title="block">block</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#constant" title="constant">constant</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="procedure_identifier">procedure_identifier:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="135" height="37">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</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="#identifier" xlink:title="identifier">
<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">identifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m76 0 h10 m3 0 h-3"/>
<polygon points="125 17 133 13 133 21"/>
<polygon points="125 17 117 13 117 21"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#block" title="block">block</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#statement" title="statement">statement</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="function_identifier">function_identifier:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="135" height="37">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</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="#identifier" xlink:title="identifier">
<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">identifier</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m76 0 h10 m3 0 h-3"/>
<polygon points="125 17 133 13 133 21"/>
<polygon points="125 17 117 13 117 21"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#block" title="block">block</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#factor" title="factor">factor</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="integer">integer:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="237" height="129">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs>
<polygon points="9 33 1 29 1 37"/>
<polygon points="17 33 9 29 9 37"/>
<rect x="51" y="51" width="30" height="32" rx="10"/>
<rect x="49" y="49" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="69">+</text>
<rect x="51" y="95" width="26" height="32" rx="10"/>
<rect x="49" y="93" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="113">-</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#digit" xlink:title="digit">
<rect x="141" y="19" width="48" height="32"/>
<rect x="139" y="17" width="48" height="32" class="nonterminal"/>
<text class="nonterminal" x="149" y="37">digit</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m20 0 h10 m0 0 h40 m-70 0 h20 m50 0 h20 m-90 0 q10 0 10 10 m70 0 q0 -10 10 -10 m-80 10 v12 m70 0 v-12 m-70 12 q0 10 10 10 m50 0 q10 0 10 -10 m-60 10 h10 m30 0 h10 m-60 -10 v20 m70 0 v-20 m-70 20 v24 m70 0 v-24 m-70 24 q0 10 10 10 m50 0 q10 0 10 -10 m-60 10 h10 m26 0 h10 m0 0 h4 m40 -76 h10 m48 0 h10 m-88 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m68 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-68 0 h10 m0 0 h58 m23 32 h-3"/>
<polygon points="227 33 235 29 235 37"/>
<polygon points="227 33 219 29 219 37"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#constant" title="constant">constant</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="string">string:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="327" height="207">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs>
<polygon points="9 33 1 29 1 37"/>
<polygon points="17 33 9 29 9 37"/>
<rect x="51" y="19" width="26" height="32" rx="10"/>
<rect x="49" y="17" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="37">"</text>
<polygon points="137 35 144 19 186 19 193 35 186 51 144 51"/>
<polygon points="135 33 142 17 184 17 191 33 184 49 142 49" class="regexp"/>
<text class="regexp" x="150" y="37">[^"]</text>
<rect x="137" y="63" width="34" height="32" rx="10"/>
<rect x="135" y="61" width="34" height="32" class="terminal" rx="10"/>
<text class="terminal" x="145" y="81">""</text>
<rect x="253" y="19" width="26" height="32" rx="10"/>
<rect x="251" y="17" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="261" y="37">"</text>
<rect x="51" y="129" width="24" height="32" rx="10"/>
<rect x="49" y="127" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="147">'</text>
<polygon points="135 145 142 129 182 129 189 145 182 161 142 161"/>
<polygon points="133 143 140 127 180 127 187 143 180 159 140 159" class="regexp"/>
<text class="regexp" x="148" y="147">[^']</text>
<rect x="135" y="173" width="28" height="32" rx="10"/>
<rect x="133" y="171" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="143" y="191">''</text>
<rect x="249" y="129" width="24" height="32" rx="10"/>
<rect x="247" y="127" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="257" y="147">'</text>
<svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m20 0 h10 m26 0 h10 m40 0 h10 m56 0 h10 m-96 0 h20 m76 0 h20 m-116 0 q10 0 10 10 m96 0 q0 -10 10 -10 m-106 10 v24 m96 0 v-24 m-96 24 q0 10 10 10 m76 0 q10 0 10 -10 m-86 10 h10 m34 0 h10 m0 0 h22 m-116 -44 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m116 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-116 0 h10 m0 0 h106 m20 32 h10 m26 0 h10 m-268 0 h20 m248 0 h20 m-288 0 q10 0 10 10 m268 0 q0 -10 10 -10 m-278 10 v90 m268 0 v-90 m-268 90 q0 10 10 10 m248 0 q10 0 10 -10 m-258 10 h10 m24 0 h10 m40 0 h10 m54 0 h10 m-94 0 h20 m74 0 h20 m-114 0 q10 0 10 10 m94 0 q0 -10 10 -10 m-104 10 v24 m94 0 v-24 m-94 24 q0 10 10 10 m74 0 q10 0 10 -10 m-84 10 h10 m28 0 h10 m0 0 h26 m-114 -44 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m114 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-114 0 h10 m0 0 h104 m20 32 h10 m24 0 h10 m0 0 h6 m23 -110 h-3"/>
<polygon points="317 33 325 29 325 37"/>
<polygon points="317 33 309 29 309 37"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#constant" title="constant">constant</xhtml:a></xhtml:li>
<xhtml:li><xhtml:a href="#writeable_expression" title="writeable_expression">writeable_expression</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="hexinteger">hexinteger:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="281" height="53">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</style>
</defs>
<polygon points="9 33 1 29 1 37"/>
<polygon points="17 33 9 29 9 37"/>
<rect x="31" y="19" width="28" height="32" rx="10"/>
<rect x="29" y="17" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="39" y="37">$</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#hexadecimal_digit" xlink:title="hexadecimal_digit">
<rect x="99" y="19" width="134" height="32"/>
<rect x="97" y="17" width="134" height="32" class="nonterminal"/>
<text class="nonterminal" x="107" y="37">hexadecimal_digit</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m0 0 h10 m28 0 h10 m20 0 h10 m134 0 h10 m-174 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m154 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-154 0 h10 m0 0 h144 m23 32 h-3"/>
<polygon points="271 33 279 29 279 37"/>
<polygon points="271 33 263 29 263 37"/></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml">referenced by:
<xhtml:ul>
<xhtml:li><xhtml:a href="#constant" title="constant">constant</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="hexadecimal_digit">hexadecimal_digit:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="147" height="565">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900; stroke-width: 1;}
.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;
font-weight: normal;
}
text.regexp {font-family: Verdana, Sans-serif;
font-size: 12px;
fill: #1F1800;
font-weight: normal;
}
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #FFDB4D; stroke: #332900; stroke-width: 1;}
rect.nonterminal {fill: #FFEC9E; stroke: #332900; stroke-width: 1;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #FFF4C7; stroke: #332900; stroke-width: 1;}
</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="#digit" xlink:title="digit">
<rect x="51" y="3" width="48" height="32"/>
<rect x="49" y="1" width="48" height="32" class="nonterminal"/>
<text class="nonterminal" x="59" y="21">digit</text></a><rect x="51" y="47" width="28" height="32" rx="10"/>
<rect x="49" y="45" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="65">A</text>
<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">B</text>
<rect x="51" y="135" width="28" height="32" rx="10"/>
<rect x="49" y="133" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="153">C</text>
<rect x="51" y="179" width="30" height="32" rx="10"/>
<rect x="49" y="177" width="30" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="197">D</text>
<rect x="51" y="223" width="28" height="32" rx="10"/>
<rect x="49" y="221" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="241">E</text>
<rect x="51" y="267" width="28" height="32" rx="10"/>
<rect x="49" y="265" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="285">F</text>
<rect x="51" y="311" width="28" height="32" rx="10"/>
<rect x="49" y="309" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="329">a</text>
<rect x="51" y="355" width="28" height="32" rx="10"/>
<rect x="49" y="353" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="373">b</text>
<rect x="51" y="399" width="26" height="32" rx="10"/>
<rect x="49" y="397" width="26" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="417">c</text>
<rect x="51" y="443" width="28" height="32" rx="10"/>
<rect x="49" y="441" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="461">d</text>
<rect x="51" y="487" width="28" height="32" rx="10"/>
<rect x="49" y="485" width="28" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="505">e</text>
<rect x="51" y="531" width="24" height="32" rx="10"/>
<rect x="49" y="529" width="24" height="32" class="terminal" rx="10"/>
<text class="terminal" x="59" y="549">f</text>