forked from zavalza/Vispi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiagram.xhtml
1810 lines (1809 loc) · 239 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.33.807" /><style type="text/css" xml:space="preserve">
::-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;
}
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><style type="text/css" xml:space="preserve"></style><svg xmlns="http://www.w3.org/2000/svg"><defs><style type="text/css" xml:space="preserve">
@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="Program">Program:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="678" height="102"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#ProgramName" xlink:title="ProgramName" shape="rect"><rect x="31" y="3" width="108" height="32"></rect><rect x="29" y="1" width="108" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">ProgramName</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_loadVispiFunctions" xlink:title="f_loadVispiFunctions" shape="rect"><rect x="159" y="3" width="148" height="32"></rect><rect x="157" y="1" width="148" height="32" class="nonterminal"></rect><text class="nonterminal" x="167" y="21">f_loadVispiFunctions</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Hardware" xlink:title="Hardware" shape="rect"><rect x="327" y="3" width="82" height="32"></rect><rect x="325" y="1" width="82" height="32" class="nonterminal"></rect><text class="nonterminal" x="335" y="21">Hardware</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Vars" xlink:title="Vars" shape="rect"><rect x="429" y="3" width="48" height="32"></rect><rect x="427" y="1" width="48" height="32" class="nonterminal"></rect><text class="nonterminal" x="437" y="21">Vars</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Assign" xlink:title="Assign" shape="rect"><rect x="497" y="3" width="60" height="32"></rect><rect x="495" y="1" width="60" height="32" class="nonterminal"></rect><text class="nonterminal" x="505" y="21">Assign</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Functions" xlink:title="Functions" shape="rect"><rect x="577" y="3" width="80" height="32"></rect><rect x="575" y="1" width="80" height="32" class="nonterminal"></rect><text class="nonterminal" x="585" y="21">Functions</text></a><rect x="213" y="69" width="438" height="32" rx="10"></rect><rect x="211" y="67" width="438" height="32" class="terminal" rx="10"></rect><text class="terminal" x="221" y="87">genera cuádruplo ENDPROC y prepara el archivo de cuádruplos</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m108 0 h10 m0 0 h10 m148 0 h10 m0 0 h10 m82 0 h10 m0 0 h10 m48 0 h10 m0 0 h10 m60 0 h10 m0 0 h10 m80 0 h10 m2 0 l2 0 m2 0 l2 0 m2 0 l2 0 m-488 66 l2 0 m2 0 l2 0 m2 0 l2 0 m2 0 h10 m438 0 h10 m3 0 h-3"></svg:path><polygon points="669 83 677 79 677 87"></polygon><polygon points="669 83 661 79 661 87"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Program" title="Program" shape="rect">Program</a> ::= <a href="#ProgramName" title="ProgramName" shape="rect">ProgramName</a> <a href="#f_loadVispiFunctions" title="f_loadVispiFunctions" shape="rect">f_loadVispiFunctions</a> <a href="#Hardware" title="Hardware" shape="rect">Hardware</a> <a href="#Vars" title="Vars" shape="rect">Vars</a> <a href="#Assign" title="Assign" shape="rect">Assign</a> <a href="#Functions" title="Functions" shape="rect">Functions</a> 'genera cuádruplo ENDPROC y prepara el archivo de cuádruplos'</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="ProgramName">ProgramName:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="648" height="36"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="31" y="3" width="76" height="32" rx="10"></rect><rect x="29" y="1" width="76" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">program</text><rect x="127" y="3" width="32" height="32" rx="10"></rect><rect x="125" y="1" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="135" y="21">id</text><rect x="179" y="3" width="36" height="32" rx="10"></rect><rect x="177" y="1" width="36" height="32" class="terminal" rx="10"></rect><text class="terminal" x="187" y="21">\n</text><rect x="235" y="3" width="386" height="32" rx="10"></rect><rect x="233" y="1" width="386" height="32" class="terminal" rx="10"></rect><text class="terminal" x="243" y="21">genera el GOTO main y guarda el nombre del programa</text><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 m32 0 h10 m0 0 h10 m36 0 h10 m0 0 h10 m386 0 h10 m3 0 h-3"></svg:path><polygon points="639 17 647 13 647 21"></polygon><polygon points="639 17 631 13 631 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#ProgramName" title="ProgramName" shape="rect">ProgramName</a>
::= 'program' 'id' '\n' 'genera el GOTO main y guarda el nombre del programa'</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="#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="Hardware">Hardware:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="630" height="36"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#CamDeclaration" xlink:title="CamDeclaration" shape="rect"><rect x="31" y="3" width="118" height="32"></rect><rect x="29" y="1" width="118" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">CamDeclaration</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#InputsDeclaration" xlink:title="InputsDeclaration" shape="rect"><rect x="169" y="3" width="132" height="32"></rect><rect x="167" y="1" width="132" height="32" class="nonterminal"></rect><text class="nonterminal" x="177" y="21">InputsDeclaration</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#OutputsDeclaration" xlink:title="OutputsDeclaration" shape="rect"><rect x="321" y="3" width="142" height="32"></rect><rect x="319" y="1" width="142" height="32" class="nonterminal"></rect><text class="nonterminal" x="329" y="21">OutputsDeclaration</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#PwmDeclaration" xlink:title="PwmDeclaration" shape="rect"><rect x="483" y="3" width="120" height="32"></rect><rect x="481" y="1" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="491" y="21">PwmDeclaration</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 m132 0 h10 m0 0 h10 m142 0 h10 m0 0 h10 m120 0 h10 m3 0 h-3"></svg:path><polygon points="621 17 629 13 629 21"></polygon><polygon points="621 17 613 13 613 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Hardware" title="Hardware" shape="rect">Hardware</a> ::= <a href="#CamDeclaration" title="CamDeclaration" shape="rect">CamDeclaration</a> <a href="#InputsDeclaration" title="InputsDeclaration" shape="rect">InputsDeclaration</a> <a href="#OutputsDeclaration" title="OutputsDeclaration" shape="rect">OutputsDeclaration</a> <a href="#PwmDeclaration" title="PwmDeclaration" shape="rect">PwmDeclaration</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="#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="CamDeclaration">CamDeclaration:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="636" height="96"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="51" y="3" width="48" height="32" rx="10"></rect><rect x="49" y="1" width="48" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">CAM</text><rect x="139" y="3" width="74" height="32" rx="10"></rect><rect x="137" y="1" width="74" height="32" class="terminal" rx="10"></rect><text class="terminal" x="147" y="21">webcam</text><rect x="139" y="47" width="58" height="32" rx="10"></rect><rect x="137" y="45" width="58" height="32" class="terminal" rx="10"></rect><text class="terminal" x="147" y="65">picam</text><rect x="253" y="3" width="24" height="32" rx="10"></rect><rect x="251" y="1" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="261" y="21">:</text><rect x="297" y="3" width="32" height="32" rx="10"></rect><rect x="295" y="1" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="305" y="21">id</text><rect x="349" y="3" width="36" height="32" rx="10"></rect><rect x="347" y="1" width="36" height="32" class="terminal" rx="10"></rect><text class="terminal" x="357" y="21">\n</text><rect x="405" y="3" width="184" height="32" rx="10"></rect><rect x="403" y="1" width="184" height="32" class="terminal" rx="10"></rect><text class="terminal" x="413" y="21">genera el cuádruplo CAM</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m48 0 h10 m20 0 h10 m74 0 h10 m-114 0 h20 m94 0 h20 m-134 0 q10 0 10 10 m114 0 q0 -10 10 -10 m-124 10 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m58 0 h10 m0 0 h16 m20 -44 h10 m24 0 h10 m0 0 h10 m32 0 h10 m0 0 h10 m36 0 h10 m0 0 h10 m184 0 h10 m-578 0 h20 m558 0 h20 m-598 0 q10 0 10 10 m578 0 q0 -10 10 -10 m-588 10 v58 m578 0 v-58 m-578 58 q0 10 10 10 m558 0 q10 0 10 -10 m-568 10 h10 m0 0 h548 m23 -78 h-3"></svg:path><polygon points="627 17 635 13 635 21"></polygon><polygon points="627 17 619 13 619 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#CamDeclaration" title="CamDeclaration" shape="rect">CamDeclaration</a>
::= ( 'CAM' ( 'webcam' | 'picam' ) ':' 'id' '\n' 'genera el cuádruplo CAM' )?</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="#Hardware" title="Hardware">Hardware</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="InputsDeclaration">InputsDeclaration:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="638" height="52"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="51" y="3" width="62" height="32" rx="10"></rect><rect x="49" y="1" width="62" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">INPUT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_savetype" xlink:title="f_savetype" shape="rect"><rect x="133" y="3" width="90" height="32"></rect><rect x="131" y="1" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="141" y="21">f_savetype</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#PinList" xlink:title="PinList" shape="rect"><rect x="243" y="3" width="60" height="32"></rect><rect x="241" y="1" width="60" height="32" class="nonterminal"></rect><text class="nonterminal" x="251" y="21">PinList</text></a><rect x="323" y="3" width="36" height="32" rx="10"></rect><rect x="321" y="1" width="36" height="32" class="terminal" rx="10"></rect><text class="terminal" x="331" y="21">\n</text><rect x="399" y="3" width="212" height="32" rx="10"></rect><rect x="397" y="1" width="212" height="32" class="terminal" rx="10"></rect><text class="terminal" x="407" y="21">genera los cuádruplos INPUT</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m62 0 h10 m0 0 h10 m90 0 h10 m0 0 h10 m60 0 h10 m0 0 h10 m36 0 h10 m-348 0 h20 m328 0 h20 m-368 0 q10 0 10 10 m348 0 q0 -10 10 -10 m-358 10 v14 m348 0 v-14 m-348 14 q0 10 10 10 m328 0 q10 0 10 -10 m-338 10 h10 m0 0 h318 m20 -34 h10 m212 0 h10 m3 0 h-3"></svg:path><polygon points="629 17 637 13 637 21"></polygon><polygon points="629 17 621 13 621 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#InputsDeclaration" title="InputsDeclaration" shape="rect">InputsDeclaration</a>
::= ( 'INPUT' <a href="#f_savetype" title="f_savetype" shape="rect">f_savetype</a> <a href="#PinList" title="PinList" shape="rect">PinList</a> '\n' )? 'genera los cuádruplos INPUT'</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="#Hardware" title="Hardware">Hardware</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="OutputsDeclaration">OutputsDeclaration:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="664" height="52"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="51" y="3" width="76" height="32" rx="10"></rect><rect x="49" y="1" width="76" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">OUTPUT</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_savetype" xlink:title="f_savetype" shape="rect"><rect x="147" y="3" width="90" height="32"></rect><rect x="145" y="1" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="155" y="21">f_savetype</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#PinList" xlink:title="PinList" shape="rect"><rect x="257" y="3" width="60" height="32"></rect><rect x="255" y="1" width="60" height="32" class="nonterminal"></rect><text class="nonterminal" x="265" y="21">PinList</text></a><rect x="337" y="3" width="36" height="32" rx="10"></rect><rect x="335" y="1" width="36" height="32" class="terminal" rx="10"></rect><text class="terminal" x="345" y="21">\n</text><rect x="413" y="3" width="224" height="32" rx="10"></rect><rect x="411" y="1" width="224" height="32" class="terminal" rx="10"></rect><text class="terminal" x="421" y="21">genera los cuádruplos OUTPUT</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m76 0 h10 m0 0 h10 m90 0 h10 m0 0 h10 m60 0 h10 m0 0 h10 m36 0 h10 m-362 0 h20 m342 0 h20 m-382 0 q10 0 10 10 m362 0 q0 -10 10 -10 m-372 10 v14 m362 0 v-14 m-362 14 q0 10 10 10 m342 0 q10 0 10 -10 m-352 10 h10 m0 0 h332 m20 -34 h10 m224 0 h10 m3 0 h-3"></svg:path><polygon points="655 17 663 13 663 21"></polygon><polygon points="655 17 647 13 647 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#OutputsDeclaration" title="OutputsDeclaration" shape="rect">OutputsDeclaration</a>
::= ( 'OUTPUT' <a href="#f_savetype" title="f_savetype" shape="rect">f_savetype</a> <a href="#PinList" title="PinList" shape="rect">PinList</a> '\n' )? 'genera los cuádruplos OUTPUT'</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="#Hardware" title="Hardware">Hardware</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="PwmDeclaration">PwmDeclaration:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="620" height="52"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="51" y="3" width="54" height="32" rx="10"></rect><rect x="49" y="1" width="54" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">PWM</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_savetype" xlink:title="f_savetype" shape="rect"><rect x="125" y="3" width="90" height="32"></rect><rect x="123" y="1" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="133" y="21">f_savetype</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#PinList" xlink:title="PinList" shape="rect"><rect x="235" y="3" width="60" height="32"></rect><rect x="233" y="1" width="60" height="32" class="nonterminal"></rect><text class="nonterminal" x="243" y="21">PinList</text></a><rect x="315" y="3" width="36" height="32" rx="10"></rect><rect x="313" y="1" width="36" height="32" class="terminal" rx="10"></rect><text class="terminal" x="323" y="21">\n</text><rect x="391" y="3" width="202" height="32" rx="10"></rect><rect x="389" y="1" width="202" height="32" class="terminal" rx="10"></rect><text class="terminal" x="399" y="21">genera los cuádruplos PWM</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m54 0 h10 m0 0 h10 m90 0 h10 m0 0 h10 m60 0 h10 m0 0 h10 m36 0 h10 m-340 0 h20 m320 0 h20 m-360 0 q10 0 10 10 m340 0 q0 -10 10 -10 m-350 10 v14 m340 0 v-14 m-340 14 q0 10 10 10 m320 0 q10 0 10 -10 m-330 10 h10 m0 0 h310 m20 -34 h10 m202 0 h10 m3 0 h-3"></svg:path><polygon points="611 17 619 13 619 21"></polygon><polygon points="611 17 603 13 603 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#PwmDeclaration" title="PwmDeclaration" shape="rect">PwmDeclaration</a>
::= ( 'PWM' <a href="#f_savetype" title="f_savetype" shape="rect">f_savetype</a> <a href="#PinList" title="PinList" shape="rect">PinList</a> '\n' )? 'genera los cuádruplos PWM'</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="#Hardware" title="Hardware">Hardware</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="PinList">PinList:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="558" height="80"><defs><style type="text/css" xml:space="preserve">
@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 61 1 57 1 65"></polygon><polygon points="17 61 9 57 9 65"></polygon><rect x="51" y="47" width="52" height="32" rx="10"></rect><rect x="49" y="45" width="52" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="65">c_int</text><rect x="123" y="47" width="24" height="32" rx="10"></rect><rect x="121" y="45" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="131" y="65">:</text><rect x="167" y="47" width="32" height="32" rx="10"></rect><rect x="165" y="45" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="175" y="65">id</text><rect x="51" y="3" width="24" height="32" rx="10"></rect><rect x="49" y="1" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">,</text><rect x="239" y="47" width="292" height="32" rx="10"></rect><rect x="237" y="45" width="292" height="32" class="terminal" rx="10"></rect><text class="terminal" x="247" y="65">guarda los id de pines como var. globales</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m20 0 h10 m52 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m32 0 h10 m-188 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m168 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-168 0 h10 m24 0 h10 m0 0 h124 m20 44 h10 m292 0 h10 m3 0 h-3"></svg:path><polygon points="549 61 557 57 557 65"></polygon><polygon points="549 61 541 57 541 65"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#PinList" title="PinList" shape="rect">PinList</a> ::= 'c_int' ':' 'id' ( ',' 'c_int' ':' 'id' )* 'guarda los id de pines como var. globales'</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="#InputsDeclaration" title="InputsDeclaration">InputsDeclaration</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#OutputsDeclaration" title="OutputsDeclaration">OutputsDeclaration</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#PwmDeclaration" title="PwmDeclaration">PwmDeclaration</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="Vars">Vars:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="422" height="52"><defs><style type="text/css" xml:space="preserve">
@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 33 1 29 1 37"></polygon><polygon points="17 33 9 29 9 37"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checktab" xlink:title="f_checktab" shape="rect"><rect x="51" y="19" width="88" height="32"></rect><rect x="49" y="17" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="37">f_checktab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Tipo" xlink:title="Tipo" shape="rect"><rect x="159" y="19" width="46" height="32"></rect><rect x="157" y="17" width="46" height="32" class="nonterminal"></rect><text class="nonterminal" x="167" y="37">Tipo</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#idList" xlink:title="idList" shape="rect"><rect x="225" y="19" width="52" height="32"></rect><rect x="223" y="17" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="233" y="37">idList</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="297" y="19" width="78" height="32"></rect><rect x="295" y="17" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="305" y="37">NEWLINE</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m20 0 h10 m88 0 h10 m0 0 h10 m46 0 h10 m0 0 h10 m52 0 h10 m0 0 h10 m78 0 h10 m-364 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m344 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-344 0 h10 m0 0 h334 m23 32 h-3"></svg:path><polygon points="413 33 421 29 421 37"></polygon><polygon points="413 33 405 29 405 37"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Vars" title="Vars" shape="rect">Vars</a> ::= ( <a href="#f_checktab" title="f_checktab" shape="rect">f_checktab</a> <a href="#Tipo" title="Tipo" shape="rect">Tipo</a> <a href="#idList" title="idList" shape="rect">idList</a> <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</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="#Program" title="Program">Program</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="idList">idList:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="680" height="80"><defs><style type="text/css" xml:space="preserve">
@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 61 1 57 1 65"></polygon><polygon points="17 61 9 57 9 65"></polygon><rect x="51" y="47" width="32" height="32" rx="10"></rect><rect x="49" y="45" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="65">id</text><rect x="51" y="3" width="24" height="32" rx="10"></rect><rect x="49" y="1" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">,</text><rect x="123" y="47" width="530" height="32" rx="10"></rect><rect x="121" y="45" width="530" height="32" class="terminal" rx="10"></rect><text class="terminal" x="131" y="65">guarda los id en el dir. de proc. ya sea como locales o como globales y su tipo</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m20 0 h10 m32 0 h10 m-72 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m52 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-52 0 h10 m24 0 h10 m0 0 h8 m20 44 h10 m530 0 h10 m3 0 h-3"></svg:path><polygon points="671 61 679 57 679 65"></polygon><polygon points="671 61 663 57 663 65"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#idList" title="idList" shape="rect">idList</a> ::= 'id' ( ',' 'id' )* 'guarda los id en el dir. de proc. ya sea como locales o como globales y su tipo'</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="#Vars" title="Vars">Vars</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="Tipo">Tipo:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="270" height="256"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="51" y="3" width="48" height="32" rx="10"></rect><rect x="49" y="1" width="48" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">bool</text><rect x="51" y="47" width="36" height="32" rx="10"></rect><rect x="49" y="45" width="36" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="65">int</text><rect x="51" y="91" width="50" height="32" rx="10"></rect><rect x="49" y="89" width="50" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="109">float</text><rect x="51" y="135" width="48" height="32" rx="10"></rect><rect x="49" y="133" width="48" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="153">char</text><rect x="51" y="179" width="58" height="32" rx="10"></rect><rect x="49" y="177" width="58" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="197">string</text><rect x="51" y="223" width="60" height="32" rx="10"></rect><rect x="49" y="221" width="60" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="241">image</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_saveType" xlink:title="f_saveType" shape="rect"><rect x="151" y="3" width="92" height="32"></rect><rect x="149" y="1" width="92" height="32" class="nonterminal"></rect><text class="nonterminal" x="159" y="21">f_saveType</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m48 0 h10 m0 0 h12 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 m36 0 h10 m0 0 h24 m-90 -10 v20 m100 0 v-20 m-100 20 v24 m100 0 v-24 m-100 24 q0 10 10 10 m80 0 q10 0 10 -10 m-90 10 h10 m50 0 h10 m0 0 h10 m-90 -10 v20 m100 0 v-20 m-100 20 v24 m100 0 v-24 m-100 24 q0 10 10 10 m80 0 q10 0 10 -10 m-90 10 h10 m48 0 h10 m0 0 h12 m-90 -10 v20 m100 0 v-20 m-100 20 v24 m100 0 v-24 m-100 24 q0 10 10 10 m80 0 q10 0 10 -10 m-90 10 h10 m58 0 h10 m0 0 h2 m-90 -10 v20 m100 0 v-20 m-100 20 v24 m100 0 v-24 m-100 24 q0 10 10 10 m80 0 q10 0 10 -10 m-90 10 h10 m60 0 h10 m20 -220 h10 m92 0 h10 m3 0 h-3"></svg:path><polygon points="261 17 269 13 269 21"></polygon><polygon points="261 17 253 13 253 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Tipo" title="Tipo" shape="rect">Tipo</a> ::= ( 'bool' | 'int' | 'float' | 'char' | 'string' | 'image' ) <a href="#f_saveType" title="f_saveType" shape="rect">f_saveType</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="#F_Stage1" title="F_Stage1">F_Stage1</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#F_Stage2" title="F_Stage2">F_Stage2</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Vars" title="Vars">Vars</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="Functions">Functions:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="1022" height="68"><defs><style type="text/css" xml:space="preserve">
@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 33 1 29 1 37"></polygon><polygon points="17 33 9 29 9 37"></polygon><rect x="71" y="19" width="40" height="32" rx="10"></rect><rect x="69" y="17" width="40" height="32" class="terminal" rx="10"></rect><text class="terminal" x="79" y="37">def</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#F_Stage1" xlink:title="F_Stage1" shape="rect"><rect x="131" y="19" width="80" height="32"></rect><rect x="129" y="17" width="80" height="32" class="nonterminal"></rect><text class="nonterminal" x="139" y="37">F_Stage1</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_saveModule" xlink:title="f_saveModule" shape="rect"><rect x="231" y="19" width="106" height="32"></rect><rect x="229" y="17" width="106" height="32" class="nonterminal"></rect><text class="nonterminal" x="239" y="37">f_saveModule</text></a><rect x="357" y="19" width="26" height="32" rx="10"></rect><rect x="355" y="17" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="365" y="37">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#F_Stage2" xlink:title="F_Stage2" shape="rect"><rect x="403" y="19" width="80" height="32"></rect><rect x="401" y="17" width="80" height="32" class="nonterminal"></rect><text class="nonterminal" x="411" y="37">F_Stage2</text></a><rect x="503" y="19" width="26" height="32" rx="10"></rect><rect x="501" y="17" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="511" y="37">)</text><rect x="549" y="19" width="24" height="32" rx="10"></rect><rect x="547" y="17" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="557" y="37">:</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="593" y="19" width="78" height="32"></rect><rect x="591" y="17" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="601" y="37">NEWLINE</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_incTab" xlink:title="f_incTab" shape="rect"><rect x="691" y="19" width="72" height="32"></rect><rect x="689" y="17" width="72" height="32" class="nonterminal"></rect><text class="nonterminal" x="699" y="37">f_incTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Block" xlink:title="Block" shape="rect"><rect x="783" y="19" width="52" height="32"></rect><rect x="781" y="17" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="791" y="37">Block</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_endModule" xlink:title="f_endModule" shape="rect"><rect x="855" y="19" width="100" height="32"></rect><rect x="853" y="17" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="863" y="37">f_endModule</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m40 0 h10 m40 0 h10 m0 0 h10 m80 0 h10 m0 0 h10 m106 0 h10 m0 0 h10 m26 0 h10 m0 0 h10 m80 0 h10 m0 0 h10 m26 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m78 0 h10 m0 0 h10 m72 0 h10 m0 0 h10 m52 0 h10 m0 0 h10 m100 0 h10 m-924 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m904 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-904 0 h10 m0 0 h894 m-944 32 h20 m944 0 h20 m-984 0 q10 0 10 10 m964 0 q0 -10 10 -10 m-974 10 v14 m964 0 v-14 m-964 14 q0 10 10 10 m944 0 q10 0 10 -10 m-954 10 h10 m0 0 h934 m23 -34 h-3"></svg:path><polygon points="1013 33 1021 29 1021 37"></polygon><polygon points="1013 33 1005 29 1005 37"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Functions" title="Functions" shape="rect">Functions</a>
::= ( 'def' <a href="#F_Stage1" title="F_Stage1" shape="rect">F_Stage1</a> <a href="#f_saveModule" title="f_saveModule" shape="rect">f_saveModule</a> '(' <a href="#F_Stage2" title="F_Stage2" shape="rect">F_Stage2</a> ')' ':' <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> <a href="#f_incTab" title="f_incTab" shape="rect">f_incTab</a> <a href="#Block" title="Block" shape="rect">Block</a> <a href="#f_endModule" title="f_endModule" shape="rect">f_endModule</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="#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="F_Stage1">F_Stage1:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="356" height="124"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Tipo" xlink:title="Tipo" shape="rect"><rect x="51" y="3" width="46" height="32"></rect><rect x="49" y="1" width="46" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="21">Tipo</text></a><rect x="117" y="3" width="32" height="32" rx="10"></rect><rect x="115" y="1" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="125" y="21">id</text><rect x="51" y="47" width="48" height="32" rx="10"></rect><rect x="49" y="45" width="48" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="65">void</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_setVoid" xlink:title="f_setVoid" shape="rect"><rect x="119" y="47" width="78" height="32"></rect><rect x="117" y="45" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="127" y="65">f_setVoid</text></a><rect x="237" y="47" width="32" height="32" rx="10"></rect><rect x="235" y="45" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="245" y="65">id</text><rect x="237" y="91" width="52" height="32" rx="10"></rect><rect x="235" y="89" width="52" height="32" class="terminal" rx="10"></rect><text class="terminal" x="245" y="109">main</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m46 0 h10 m0 0 h10 m32 0 h10 m0 0 h160 m-298 0 h20 m278 0 h20 m-318 0 q10 0 10 10 m298 0 q0 -10 10 -10 m-308 10 v24 m298 0 v-24 m-298 24 q0 10 10 10 m278 0 q10 0 10 -10 m-288 10 h10 m48 0 h10 m0 0 h10 m78 0 h10 m20 0 h10 m32 0 h10 m0 0 h20 m-92 0 h20 m72 0 h20 m-112 0 q10 0 10 10 m92 0 q0 -10 10 -10 m-102 10 v24 m92 0 v-24 m-92 24 q0 10 10 10 m72 0 q10 0 10 -10 m-82 10 h10 m52 0 h10 m43 -88 h-3"></svg:path><polygon points="347 17 355 13 355 21"></polygon><polygon points="347 17 339 13 339 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#F_Stage1" title="F_Stage1" shape="rect">F_Stage1</a> ::= <a href="#Tipo" title="Tipo" shape="rect">Tipo</a> 'id'
| 'void' <a href="#f_setVoid" title="f_setVoid" shape="rect">f_setVoid</a> ( 'id' | 'main' )</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="#Functions" title="Functions">Functions</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="F_Stage2">F_Stage2:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="366" height="96"><defs><style type="text/css" xml:space="preserve">
@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 61 1 57 1 65"></polygon><polygon points="17 61 9 57 9 65"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Tipo" xlink:title="Tipo" shape="rect"><rect x="71" y="47" width="46" height="32"></rect><rect x="69" y="45" width="46" height="32" class="nonterminal"></rect><text class="nonterminal" x="79" y="65">Tipo</text></a><rect x="137" y="47" width="32" height="32" rx="10"></rect><rect x="135" y="45" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="145" y="65">id</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_addToParam" xlink:title="f_addToParam" shape="rect"><rect x="189" y="47" width="110" height="32"></rect><rect x="187" y="45" width="110" height="32" class="nonterminal"></rect><text class="nonterminal" x="197" y="65">f_addToParam</text></a><rect x="71" y="3" width="24" height="32" rx="10"></rect><rect x="69" y="1" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="79" y="21">,</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 61 h2 m40 0 h10 m46 0 h10 m0 0 h10 m32 0 h10 m0 0 h10 m110 0 h10 m-268 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -24 q0 -10 10 -10 m248 44 l20 0 m-20 0 q10 0 10 -10 l0 -24 q0 -10 -10 -10 m-248 0 h10 m24 0 h10 m0 0 h204 m-288 44 h20 m288 0 h20 m-328 0 q10 0 10 10 m308 0 q0 -10 10 -10 m-318 10 v14 m308 0 v-14 m-308 14 q0 10 10 10 m288 0 q10 0 10 -10 m-298 10 h10 m0 0 h278 m23 -34 h-3"></svg:path><polygon points="357 61 365 57 365 65"></polygon><polygon points="357 61 349 57 349 65"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#F_Stage2" title="F_Stage2" shape="rect">F_Stage2</a> ::= ( <a href="#Tipo" title="Tipo" shape="rect">Tipo</a> 'id' <a href="#f_addToParam" title="f_addToParam" shape="rect">f_addToParam</a> ( ',' <a href="#Tipo" title="Tipo" shape="rect">Tipo</a> 'id' <a href="#f_addToParam" title="f_addToParam" shape="rect">f_addToParam</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="#Functions" title="Functions">Functions</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="Assign">Assign:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="842" height="52"><defs><style type="text/css" xml:space="preserve">
@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 33 1 29 1 37"></polygon><polygon points="17 33 9 29 9 37"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkTab" xlink:title="f_checkTab" shape="rect"><rect x="51" y="19" width="90" height="32"></rect><rect x="49" y="17" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="37">f_checkTab</text></a><rect x="161" y="19" width="32" height="32" rx="10"></rect><rect x="159" y="17" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="169" y="37">id</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkID" xlink:title="f_checkID" shape="rect"><rect x="213" y="19" width="80" height="32"></rect><rect x="211" y="17" width="80" height="32" class="nonterminal"></rect><text class="nonterminal" x="221" y="37">f_checkID</text></a><rect x="313" y="19" width="30" height="32" rx="10"></rect><rect x="311" y="17" width="30" height="32" class="terminal" rx="10"></rect><text class="terminal" x="321" y="37">=</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_isAssign" xlink:title="f_isAssign" shape="rect"><rect x="363" y="19" width="82" height="32"></rect><rect x="361" y="17" width="82" height="32" class="nonterminal"></rect><text class="nonterminal" x="371" y="37">f_isAssign</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression" shape="rect"><rect x="465" y="19" width="88" height="32"></rect><rect x="463" y="17" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="473" y="37">Expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="573" y="19" width="78" height="32"></rect><rect x="571" y="17" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="581" y="37">NEWLINE</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_generateEqual" xlink:title="f_generateEqual" shape="rect"><rect x="671" y="19" width="124" height="32"></rect><rect x="669" y="17" width="124" height="32" class="nonterminal"></rect><text class="nonterminal" x="679" y="37">f_generateEqual</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m20 0 h10 m90 0 h10 m0 0 h10 m32 0 h10 m0 0 h10 m80 0 h10 m0 0 h10 m30 0 h10 m0 0 h10 m82 0 h10 m0 0 h10 m88 0 h10 m0 0 h10 m78 0 h10 m0 0 h10 m124 0 h10 m-784 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m764 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-764 0 h10 m0 0 h754 m23 32 h-3"></svg:path><polygon points="833 33 841 29 841 37"></polygon><polygon points="833 33 825 29 825 37"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Assign" title="Assign" shape="rect">Assign</a> ::= ( <a href="#f_checkTab" title="f_checkTab" shape="rect">f_checkTab</a> 'id' <a href="#f_checkID" title="f_checkID" shape="rect">f_checkID</a> '=' <a href="#f_isAssign" title="f_isAssign" shape="rect">f_isAssign</a> <a href="#Expression" title="Expression" shape="rect">Expression</a> <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> <a href="#f_generateEqual" title="f_generateEqual" shape="rect">f_generateEqual</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="#Program" title="Program">Program</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="Block">Block:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="740" height="52"><defs><style type="text/css" xml:space="preserve">
@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 33 1 29 1 37"></polygon><polygon points="17 33 9 29 9 37"></polygon><rect x="51" y="19" width="32" height="32" rx="10"></rect><rect x="49" y="17" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="37">\t</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_addTab" xlink:title="f_addTab" shape="rect"><rect x="103" y="19" width="78" height="32"></rect><rect x="101" y="17" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="111" y="37">f_addTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#moreTabs" xlink:title="moreTabs" shape="rect"><rect x="201" y="19" width="82" height="32"></rect><rect x="199" y="17" width="82" height="32" class="nonterminal"></rect><text class="nonterminal" x="209" y="37">moreTabs</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Statement" xlink:title="Statement" shape="rect"><rect x="303" y="19" width="86" height="32"></rect><rect x="301" y="17" width="86" height="32" class="nonterminal"></rect><text class="nonterminal" x="311" y="37">Statement</text></a><rect x="429" y="19" width="284" height="32" rx="10"></rect><rect x="427" y="17" width="284" height="32" class="terminal" rx="10"></rect><text class="terminal" x="437" y="37">decrementa la tabulación esperada en 1</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m20 0 h10 m32 0 h10 m0 0 h10 m78 0 h10 m0 0 h10 m82 0 h10 m0 0 h10 m86 0 h10 m-378 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m358 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-358 0 h10 m0 0 h348 m20 32 h10 m284 0 h10 m3 0 h-3"></svg:path><polygon points="731 33 739 29 739 37"></polygon><polygon points="731 33 723 29 723 37"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Block" title="Block" shape="rect">Block</a> ::= ( '\t' <a href="#f_addTab" title="f_addTab" shape="rect">f_addTab</a> <a href="#moreTabs" title="moreTabs" shape="rect">moreTabs</a> <a href="#Statement" title="Statement" shape="rect">Statement</a> )+ 'decrementa la tabulación esperada en 1'</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="#Condition" title="Condition">Condition</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Cycle" title="Cycle">Cycle</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#DoCycle" title="DoCycle">DoCycle</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Functions" title="Functions">Functions</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="moreTabs">moreTabs:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="406" height="112"><defs><style type="text/css" xml:space="preserve">
@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 33 1 29 1 37"></polygon><polygon points="17 33 9 29 9 37"></polygon><rect x="91" y="19" width="32" height="32" rx="10"></rect><rect x="89" y="17" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="99" y="37">\t</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_addTab" xlink:title="f_addTab" shape="rect"><rect x="143" y="19" width="78" height="32"></rect><rect x="141" y="17" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="151" y="37">f_addTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="91" y="63" width="78" height="32"></rect><rect x="89" y="61" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="99" y="81">NEWLINE</text></a><rect x="189" y="63" width="32" height="32" rx="10"></rect><rect x="187" y="61" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="197" y="81">\t</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_addTab" xlink:title="f_addTab" shape="rect"><rect x="241" y="63" width="78" height="32"></rect><rect x="239" y="61" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="249" y="81">f_addTab</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m60 0 h10 m32 0 h10 m0 0 h10 m78 0 h10 m0 0 h98 m-268 0 h20 m248 0 h20 m-288 0 q10 0 10 10 m268 0 q0 -10 10 -10 m-278 10 v24 m268 0 v-24 m-268 24 q0 10 10 10 m248 0 q10 0 10 -10 m-258 10 h10 m78 0 h10 m0 0 h10 m32 0 h10 m0 0 h10 m78 0 h10 m-288 -44 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m288 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-288 0 h10 m0 0 h278 m-328 32 h20 m328 0 h20 m-368 0 q10 0 10 10 m348 0 q0 -10 10 -10 m-358 10 v58 m348 0 v-58 m-348 58 q0 10 10 10 m328 0 q10 0 10 -10 m-338 10 h10 m0 0 h318 m23 -78 h-3"></svg:path><polygon points="397 33 405 29 405 37"></polygon><polygon points="397 33 389 29 389 37"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#moreTabs" title="moreTabs" shape="rect">moreTabs</a> ::= ( '\t' <a href="#f_addTab" title="f_addTab" shape="rect">f_addTab</a> | <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> '\t' <a href="#f_addTab" title="f_addTab" shape="rect">f_addTab</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="#Block" title="Block">Block</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">Statement:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="954" height="316"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Vars" xlink:title="Vars" shape="rect"><rect x="51" y="3" width="48" height="32"></rect><rect x="49" y="1" width="48" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="21">Vars</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Assign" xlink:title="Assign" shape="rect"><rect x="51" y="47" width="60" height="32"></rect><rect x="49" y="45" width="60" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="65">Assign</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkTab" xlink:title="f_checkTab" shape="rect"><rect x="51" y="91" width="90" height="32"></rect><rect x="49" y="89" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="109">f_checkTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Condition" xlink:title="Condition" shape="rect"><rect x="161" y="91" width="80" height="32"></rect><rect x="159" y="89" width="80" height="32" class="nonterminal"></rect><text class="nonterminal" x="169" y="109">Condition</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkTab" xlink:title="f_checkTab" shape="rect"><rect x="51" y="135" width="90" height="32"></rect><rect x="49" y="133" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="153">f_checkTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#DoCycle" xlink:title="DoCycle" shape="rect"><rect x="161" y="135" width="70" height="32"></rect><rect x="159" y="133" width="70" height="32" class="nonterminal"></rect><text class="nonterminal" x="169" y="153">DoCycle</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Cycle" xlink:title="Cycle" shape="rect"><rect x="51" y="179" width="52" height="32"></rect><rect x="49" y="177" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="197">Cycle</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkTab" xlink:title="f_checkTab" shape="rect"><rect x="51" y="223" width="90" height="32"></rect><rect x="49" y="221" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="241">f_checkTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Funct" xlink:title="Funct" shape="rect"><rect x="161" y="223" width="54" height="32"></rect><rect x="159" y="221" width="54" height="32" class="nonterminal"></rect><text class="nonterminal" x="169" y="241">Funct</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="235" y="223" width="78" height="32"></rect><rect x="233" y="221" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="243" y="241">NEWLINE</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkTab" xlink:title="f_checkTab" shape="rect"><rect x="51" y="267" width="90" height="32"></rect><rect x="49" y="265" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="285">f_checkTab</text></a><rect x="161" y="267" width="60" height="32" rx="10"></rect><rect x="159" y="265" width="60" height="32" class="terminal" rx="10"></rect><text class="terminal" x="169" y="285">return</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_isReturn" xlink:title="f_isReturn" shape="rect"><rect x="241" y="267" width="84" height="32"></rect><rect x="239" y="265" width="84" height="32" class="nonterminal"></rect><text class="nonterminal" x="249" y="285">f_isReturn</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression" shape="rect"><rect x="345" y="267" width="88" height="32"></rect><rect x="343" y="265" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="353" y="285">Expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_return" xlink:title="f_return" shape="rect"><rect x="453" y="267" width="70" height="32"></rect><rect x="451" y="265" width="70" height="32" class="nonterminal"></rect><text class="nonterminal" x="461" y="285">f_return</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="543" y="267" width="78" height="32"></rect><rect x="541" y="265" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="551" y="285">NEWLINE</text></a><rect x="661" y="3" width="266" height="32" rx="10"></rect><rect x="659" y="1" width="266" height="32" class="terminal" rx="10"></rect><text class="terminal" x="669" y="21">resetea la bandera de estatuto return</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m48 0 h10 m0 0 h522 m-610 0 h20 m590 0 h20 m-630 0 q10 0 10 10 m610 0 q0 -10 10 -10 m-620 10 v24 m610 0 v-24 m-610 24 q0 10 10 10 m590 0 q10 0 10 -10 m-600 10 h10 m60 0 h10 m0 0 h510 m-600 -10 v20 m610 0 v-20 m-610 20 v24 m610 0 v-24 m-610 24 q0 10 10 10 m590 0 q10 0 10 -10 m-600 10 h10 m90 0 h10 m0 0 h10 m80 0 h10 m0 0 h380 m-600 -10 v20 m610 0 v-20 m-610 20 v24 m610 0 v-24 m-610 24 q0 10 10 10 m590 0 q10 0 10 -10 m-600 10 h10 m90 0 h10 m0 0 h10 m70 0 h10 m0 0 h390 m-600 -10 v20 m610 0 v-20 m-610 20 v24 m610 0 v-24 m-610 24 q0 10 10 10 m590 0 q10 0 10 -10 m-600 10 h10 m52 0 h10 m0 0 h518 m-600 -10 v20 m610 0 v-20 m-610 20 v24 m610 0 v-24 m-610 24 q0 10 10 10 m590 0 q10 0 10 -10 m-600 10 h10 m90 0 h10 m0 0 h10 m54 0 h10 m0 0 h10 m78 0 h10 m0 0 h308 m-600 -10 v20 m610 0 v-20 m-610 20 v24 m610 0 v-24 m-610 24 q0 10 10 10 m590 0 q10 0 10 -10 m-600 10 h10 m90 0 h10 m0 0 h10 m60 0 h10 m0 0 h10 m84 0 h10 m0 0 h10 m88 0 h10 m0 0 h10 m70 0 h10 m0 0 h10 m78 0 h10 m-600 -10 v20 m610 0 v-20 m-610 20 v14 m610 0 v-14 m-610 14 q0 10 10 10 m590 0 q10 0 10 -10 m-600 10 h10 m0 0 h580 m20 -298 h10 m266 0 h10 m3 0 h-3"></svg:path><polygon points="945 17 953 13 953 21"></polygon><polygon points="945 17 937 13 937 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Statement" title="Statement" shape="rect">Statement</a>
::= ( <a href="#Vars" title="Vars" shape="rect">Vars</a> | <a href="#Assign" title="Assign" shape="rect">Assign</a> | <a href="#f_checkTab" title="f_checkTab" shape="rect">f_checkTab</a> <a href="#Condition" title="Condition" shape="rect">Condition</a> | <a href="#f_checkTab" title="f_checkTab" shape="rect">f_checkTab</a> <a href="#DoCycle" title="DoCycle" shape="rect">DoCycle</a> | <a href="#Cycle" title="Cycle" shape="rect">Cycle</a> | <a href="#f_checkTab" title="f_checkTab" shape="rect">f_checkTab</a> <a href="#Funct" title="Funct" shape="rect">Funct</a> <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> | <a href="#f_checkTab" title="f_checkTab" shape="rect">f_checkTab</a> 'return' <a href="#f_isReturn" title="f_isReturn" shape="rect">f_isReturn</a> <a href="#Expression" title="Expression" shape="rect">Expression</a> <a href="#f_return" title="f_return" shape="rect">f_return</a> <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> )? 'resetea la bandera de estatuto return'</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="#Block" title="Block">Block</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="Condition">Condition:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="914" height="184"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="31" y="3" width="28" height="32" rx="10"></rect><rect x="29" y="1" width="28" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">if</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_isCondition" xlink:title="f_isCondition" shape="rect"><rect x="79" y="3" width="102" height="32"></rect><rect x="77" y="1" width="102" height="32" class="nonterminal"></rect><text class="nonterminal" x="87" y="21">f_isCondition</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression" shape="rect"><rect x="201" y="3" width="88" height="32"></rect><rect x="199" y="1" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="209" y="21">Expression</text></a><rect x="309" y="3" width="24" height="32" rx="10"></rect><rect x="307" y="1" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="317" y="21">:</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_endCondition" xlink:title="f_endCondition" shape="rect"><rect x="353" y="3" width="116" height="32"></rect><rect x="351" y="1" width="116" height="32" class="nonterminal"></rect><text class="nonterminal" x="361" y="21">f_endCondition</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="489" y="3" width="78" height="32"></rect><rect x="487" y="1" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="497" y="21">NEWLINE</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_incTab" xlink:title="f_incTab" shape="rect"><rect x="587" y="3" width="72" height="32"></rect><rect x="585" y="1" width="72" height="32" class="nonterminal"></rect><text class="nonterminal" x="595" y="21">f_incTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Block" xlink:title="Block" shape="rect"><rect x="679" y="3" width="52" height="32"></rect><rect x="677" y="1" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="687" y="21">Block</text></a><rect x="751" y="3" width="44" height="32" rx="10"></rect><rect x="749" y="1" width="44" height="32" class="terminal" rx="10"></rect><text class="terminal" x="759" y="21">end</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="815" y="3" width="78" height="32"></rect><rect x="813" y="1" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="823" y="21">NEWLINE</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkTab" xlink:title="f_checkTab" shape="rect"><rect x="105" y="69" width="90" height="32"></rect><rect x="103" y="67" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="113" y="87">f_checkTab</text></a><rect x="215" y="69" width="46" height="32" rx="10"></rect><rect x="213" y="67" width="46" height="32" class="terminal" rx="10"></rect><text class="terminal" x="223" y="87">else</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_popIf" xlink:title="f_popIf" shape="rect"><rect x="281" y="69" width="64" height="32"></rect><rect x="279" y="67" width="64" height="32" class="nonterminal"></rect><text class="nonterminal" x="289" y="87">f_popIf</text></a><rect x="365" y="69" width="24" height="32" rx="10"></rect><rect x="363" y="67" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="373" y="87">:</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="409" y="69" width="78" height="32"></rect><rect x="407" y="67" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="417" y="87">NEWLINE</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_incTab" xlink:title="f_incTab" shape="rect"><rect x="507" y="69" width="72" height="32"></rect><rect x="505" y="67" width="72" height="32" class="nonterminal"></rect><text class="nonterminal" x="515" y="87">f_incTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Block" xlink:title="Block" shape="rect"><rect x="599" y="69" width="52" height="32"></rect><rect x="597" y="67" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="607" y="87">Block</text></a><rect x="671" y="69" width="44" height="32" rx="10"></rect><rect x="669" y="67" width="44" height="32" class="terminal" rx="10"></rect><text class="terminal" x="679" y="87">end</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="735" y="69" width="78" height="32"></rect><rect x="733" y="67" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="743" y="87">NEWLINE</text></a><rect x="577" y="151" width="310" height="32" rx="10"></rect><rect x="575" y="149" width="310" height="32" class="terminal" rx="10"></rect><text class="terminal" x="585" y="169">rellena la dirección destino del GOTOF del if</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m28 0 h10 m0 0 h10 m102 0 h10 m0 0 h10 m88 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m116 0 h10 m0 0 h10 m78 0 h10 m0 0 h10 m72 0 h10 m0 0 h10 m52 0 h10 m0 0 h10 m44 0 h10 m0 0 h10 m78 0 h10 m2 0 l2 0 m2 0 l2 0 m2 0 l2 0 m-852 66 l2 0 m2 0 l2 0 m2 0 l2 0 m22 0 h10 m90 0 h10 m0 0 h10 m46 0 h10 m0 0 h10 m64 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m78 0 h10 m0 0 h10 m72 0 h10 m0 0 h10 m52 0 h10 m0 0 h10 m44 0 h10 m0 0 h10 m78 0 h10 m-748 0 h20 m728 0 h20 m-768 0 q10 0 10 10 m748 0 q0 -10 10 -10 m-758 10 v14 m748 0 v-14 m-748 14 q0 10 10 10 m728 0 q10 0 10 -10 m-738 10 h10 m0 0 h718 m22 -34 l2 0 m2 0 l2 0 m2 0 l2 0 m-300 82 l2 0 m2 0 l2 0 m2 0 l2 0 m2 0 h10 m310 0 h10 m3 0 h-3"></svg:path><polygon points="905 165 913 161 913 169"></polygon><polygon points="905 165 897 161 897 169"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Condition" title="Condition" shape="rect">Condition</a>
::= 'if' <a href="#f_isCondition" title="f_isCondition" shape="rect">f_isCondition</a> <a href="#Expression" title="Expression" shape="rect">Expression</a> ':' <a href="#f_endCondition" title="f_endCondition" shape="rect">f_endCondition</a> <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> <a href="#f_incTab" title="f_incTab" shape="rect">f_incTab</a> <a href="#Block" title="Block" shape="rect">Block</a> 'end' <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> ( <a href="#f_checkTab" title="f_checkTab" shape="rect">f_checkTab</a> 'else' <a href="#f_popIf" title="f_popIf" shape="rect">f_popIf</a> ':' <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> <a href="#f_incTab" title="f_incTab" shape="rect">f_incTab</a> <a href="#Block" title="Block" shape="rect">Block</a> 'end' <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> )? 'rellena la dirección destino del GOTOF del if'</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" 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="Cycle">Cycle:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="954" height="102"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkTab" xlink:title="f_checkTab" shape="rect"><rect x="31" y="3" width="90" height="32"></rect><rect x="29" y="1" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">f_checkTab</text></a><rect x="141" y="3" width="56" height="32" rx="10"></rect><rect x="139" y="1" width="56" height="32" class="terminal" rx="10"></rect><text class="terminal" x="149" y="21">while</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_isCondition" xlink:title="f_isCondition" shape="rect"><rect x="217" y="3" width="102" height="32"></rect><rect x="215" y="1" width="102" height="32" class="nonterminal"></rect><text class="nonterminal" x="225" y="21">f_isCondition</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression" shape="rect"><rect x="339" y="3" width="88" height="32"></rect><rect x="337" y="1" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="347" y="21">Expression</text></a><rect x="447" y="3" width="24" height="32" rx="10"></rect><rect x="445" y="1" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="455" y="21">:</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_endCondition" xlink:title="f_endCondition" shape="rect"><rect x="491" y="3" width="116" height="32"></rect><rect x="489" y="1" width="116" height="32" class="nonterminal"></rect><text class="nonterminal" x="499" y="21">f_endCondition</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="627" y="3" width="78" height="32"></rect><rect x="625" y="1" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="635" y="21">NEWLINE</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_incTab" xlink:title="f_incTab" shape="rect"><rect x="725" y="3" width="72" height="32"></rect><rect x="723" y="1" width="72" height="32" class="nonterminal"></rect><text class="nonterminal" x="733" y="21">f_incTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Block" xlink:title="Block" shape="rect"><rect x="817" y="3" width="52" height="32"></rect><rect x="815" y="1" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="825" y="21">Block</text></a><rect x="889" y="3" width="44" height="32" rx="10"></rect><rect x="887" y="1" width="44" height="32" class="terminal" rx="10"></rect><text class="terminal" x="897" y="21">end</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="437" y="69" width="78" height="32"></rect><rect x="435" y="67" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="445" y="87">NEWLINE</text></a><rect x="535" y="69" width="392" height="32" rx="10"></rect><rect x="533" y="67" width="392" height="32" class="terminal" rx="10"></rect><text class="terminal" x="543" y="87">Genera cuádruplo GOTO correspondiente al fin del while</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m90 0 h10 m0 0 h10 m56 0 h10 m0 0 h10 m102 0 h10 m0 0 h10 m88 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m116 0 h10 m0 0 h10 m78 0 h10 m0 0 h10 m72 0 h10 m0 0 h10 m52 0 h10 m0 0 h10 m44 0 h10 m2 0 l2 0 m2 0 l2 0 m2 0 l2 0 m-540 66 l2 0 m2 0 l2 0 m2 0 l2 0 m2 0 h10 m78 0 h10 m0 0 h10 m392 0 h10 m3 0 h-3"></svg:path><polygon points="945 83 953 79 953 87"></polygon><polygon points="945 83 937 79 937 87"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Cycle" title="Cycle" shape="rect">Cycle</a> ::= <a href="#f_checkTab" title="f_checkTab" shape="rect">f_checkTab</a> 'while' <a href="#f_isCondition" title="f_isCondition" shape="rect">f_isCondition</a> <a href="#Expression" title="Expression" shape="rect">Expression</a> ':' <a href="#f_endCondition" title="f_endCondition" shape="rect">f_endCondition</a> <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> <a href="#f_incTab" title="f_incTab" shape="rect">f_incTab</a> <a href="#Block" title="Block" shape="rect">Block</a> 'end' <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> 'Genera cuádruplo GOTO correspondiente al fin del while'</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" 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="DoCycle">DoCycle:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="908" height="102"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="31" y="3" width="36" height="32" rx="10"></rect><rect x="29" y="1" width="36" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">do</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_pushDo" xlink:title="f_pushDo" shape="rect"><rect x="87" y="3" width="80" height="32"></rect><rect x="85" y="1" width="80" height="32" class="nonterminal"></rect><text class="nonterminal" x="95" y="21">f_pushDo</text></a><rect x="187" y="3" width="24" height="32" rx="10"></rect><rect x="185" y="1" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="195" y="21">:</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="231" y="3" width="78" height="32"></rect><rect x="229" y="1" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="239" y="21">NEWLINE</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_incTab" xlink:title="f_incTab" shape="rect"><rect x="329" y="3" width="72" height="32"></rect><rect x="327" y="1" width="72" height="32" class="nonterminal"></rect><text class="nonterminal" x="337" y="21">f_incTab</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Block" xlink:title="Block" shape="rect"><rect x="421" y="3" width="52" height="32"></rect><rect x="419" y="1" width="52" height="32" class="nonterminal"></rect><text class="nonterminal" x="429" y="21">Block</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkTab" xlink:title="f_checkTab" shape="rect"><rect x="493" y="3" width="90" height="32"></rect><rect x="491" y="1" width="90" height="32" class="nonterminal"></rect><text class="nonterminal" x="501" y="21">f_checkTab</text></a><rect x="603" y="3" width="48" height="32" rx="10"></rect><rect x="601" y="1" width="48" height="32" class="terminal" rx="10"></rect><text class="terminal" x="611" y="21">loop</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_isDoWhile" xlink:title="f_isDoWhile" shape="rect"><rect x="671" y="3" width="94" height="32"></rect><rect x="669" y="1" width="94" height="32" class="nonterminal"></rect><text class="nonterminal" x="679" y="21">f_isDoWhile</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_isCondition" xlink:title="f_isCondition" shape="rect"><rect x="785" y="3" width="102" height="32"></rect><rect x="783" y="1" width="102" height="32" class="nonterminal"></rect><text class="nonterminal" x="793" y="21">f_isCondition</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression" shape="rect"><rect x="559" y="69" width="88" height="32"></rect><rect x="557" y="67" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="567" y="87">Expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_endCondition" xlink:title="f_endCondition" shape="rect"><rect x="667" y="69" width="116" height="32"></rect><rect x="665" y="67" width="116" height="32" class="nonterminal"></rect><text class="nonterminal" x="675" y="87">f_endCondition</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NEWLINE" xlink:title="NEWLINE" shape="rect"><rect x="803" y="69" width="78" height="32"></rect><rect x="801" y="67" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="811" y="87">NEWLINE</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m36 0 h10 m0 0 h10 m80 0 h10 m0 0 h10 m24 0 h10 m0 0 h10 m78 0 h10 m0 0 h10 m72 0 h10 m0 0 h10 m52 0 h10 m0 0 h10 m90 0 h10 m0 0 h10 m48 0 h10 m0 0 h10 m94 0 h10 m0 0 h10 m102 0 h10 m2 0 l2 0 m2 0 l2 0 m2 0 l2 0 m-372 66 l2 0 m2 0 l2 0 m2 0 l2 0 m2 0 h10 m88 0 h10 m0 0 h10 m116 0 h10 m0 0 h10 m78 0 h10 m3 0 h-3"></svg:path><polygon points="899 83 907 79 907 87"></polygon><polygon points="899 83 891 79 891 87"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#DoCycle" title="DoCycle" shape="rect">DoCycle</a> ::= 'do' <a href="#f_pushDo" title="f_pushDo" shape="rect">f_pushDo</a> ':' <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> <a href="#f_incTab" title="f_incTab" shape="rect">f_incTab</a> <a href="#Block" title="Block" shape="rect">Block</a> <a href="#f_checkTab" title="f_checkTab" shape="rect">f_checkTab</a> 'loop' <a href="#f_isDoWhile" title="f_isDoWhile" shape="rect">f_isDoWhile</a> <a href="#f_isCondition" title="f_isCondition" shape="rect">f_isCondition</a> <a href="#Expression" title="Expression" shape="rect">Expression</a> <a href="#f_endCondition" title="f_endCondition" shape="rect">f_endCondition</a> <a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</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" 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="Funct">Funct:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="1154" height="282"><defs><style type="text/css" xml:space="preserve">
@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="11 17 3 13 3 21"></polygon><polygon points="19 17 11 13 11 21"></polygon><rect x="33" y="3" width="32" height="32" rx="10"></rect><rect x="31" y="1" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="41" y="21">id</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_checkProc" xlink:title="f_checkProc" shape="rect"><rect x="85" y="3" width="94" height="32"></rect><rect x="83" y="1" width="94" height="32" class="nonterminal"></rect><text class="nonterminal" x="93" y="21">f_checkProc</text></a><rect x="199" y="3" width="26" height="32" rx="10"></rect><rect x="197" y="1" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="207" y="21">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_functCall" xlink:title="f_functCall" shape="rect"><rect x="76" y="85" width="86" height="32"></rect><rect x="74" y="83" width="86" height="32" class="nonterminal"></rect><text class="nonterminal" x="84" y="103">f_functCall</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression" shape="rect"><rect x="182" y="85" width="88" height="32"></rect><rect x="180" y="83" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="190" y="103">Expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_genParam" xlink:title="f_genParam" shape="rect"><rect x="290" y="85" width="96" height="32"></rect><rect x="288" y="83" width="96" height="32" class="nonterminal"></rect><text class="nonterminal" x="298" y="103">f_genParam</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_functCall" xlink:title="f_functCall" shape="rect"><rect x="406" y="85" width="86" height="32"></rect><rect x="404" y="83" width="86" height="32" class="nonterminal"></rect><text class="nonterminal" x="414" y="103">f_functCall</text></a><rect x="552" y="85" width="24" height="32" rx="10"></rect><rect x="550" y="83" width="24" height="32" class="terminal" rx="10"></rect><text class="terminal" x="560" y="103">,</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression" shape="rect"><rect x="596" y="85" width="88" height="32"></rect><rect x="594" y="83" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="604" y="103">Expression</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_genParam" xlink:title="f_genParam" shape="rect"><rect x="704" y="85" width="96" height="32"></rect><rect x="702" y="83" width="96" height="32" class="nonterminal"></rect><text class="nonterminal" x="712" y="103">f_genParam</text></a><rect x="820" y="85" width="224" height="32" rx="10"></rect><rect x="818" y="83" width="224" height="32" class="terminal" rx="10"></rect><text class="terminal" x="828" y="103">verifica número de parámetros</text><rect x="567" y="183" width="26" height="32" rx="10"></rect><rect x="565" y="181" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="575" y="201">)</text><rect x="25" y="249" width="1102" height="32" rx="10"></rect><rect x="23" y="247" width="1102" height="32" class="terminal" rx="10"></rect><text class="terminal" x="33" y="267">genera cuádruplos GOSUB o CALL así como la asignación del valor de retorno de la función a una variable temporal, si es que no es void. Apaga la bandera functCall</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m19 17 h2 m0 0 h10 m32 0 h10 m0 0 h10 m94 0 h10 m0 0 h10 m26 0 h10 m2 0 l2 0 m2 0 l2 0 m2 0 l2 0 m-213 82 l2 0 m2 0 l2 0 m2 0 l2 0 m22 0 h10 m86 0 h10 m0 0 h10 m88 0 h10 m0 0 h10 m96 0 h10 m0 0 h10 m86 0 h10 m40 0 h10 m24 0 h10 m0 0 h10 m88 0 h10 m0 0 h10 m96 0 h10 m0 0 h10 m224 0 h10 m-532 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m512 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-512 0 h10 m0 0 h502 m-552 32 h20 m552 0 h20 m-592 0 q10 0 10 10 m572 0 q0 -10 10 -10 m-582 10 v14 m572 0 v-14 m-572 14 q0 10 10 10 m552 0 q10 0 10 -10 m-562 10 h10 m0 0 h542 m-1028 -34 h20 m1028 0 h20 m-1068 0 q10 0 10 10 m1048 0 q0 -10 10 -10 m-1058 10 v30 m1048 0 v-30 m-1048 30 q0 10 10 10 m1028 0 q10 0 10 -10 m-1038 10 h10 m0 0 h1018 m22 -50 l2 0 m2 0 l2 0 m2 0 l2 0 m-581 98 l2 0 m2 0 l2 0 m2 0 l2 0 m2 0 h10 m26 0 h10 m2 0 l2 0 m2 0 l2 0 m2 0 l2 0 m-612 66 l2 0 m2 0 l2 0 m2 0 l2 0 m2 0 h10 m1102 0 h10 m3 0 h-3"></svg:path><polygon points="1145 263 1153 259 1153 267"></polygon><polygon points="1145 263 1137 259 1137 267"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Funct" title="Funct" shape="rect">Funct</a> ::= 'id' <a href="#f_checkProc" title="f_checkProc" shape="rect">f_checkProc</a> '(' ( <a href="#f_functCall" title="f_functCall" shape="rect">f_functCall</a> <a href="#Expression" title="Expression" shape="rect">Expression</a> <a href="#f_genParam" title="f_genParam" shape="rect">f_genParam</a> <a href="#f_functCall" title="f_functCall" shape="rect">f_functCall</a> ( ',' <a href="#Expression" title="Expression" shape="rect">Expression</a> <a href="#f_genParam" title="f_genParam" shape="rect">f_genParam</a> 'verifica número de parámetros' )* )? ')' 'genera cuádruplos GOSUB o CALL así como la asignación del valor de retorno de la función a una variable temporal, si es que no es void. Apaga la bandera functCall'</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="#Factor" title="Factor">Factor</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="Expression">Expression:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="580" height="68"><defs><style type="text/css" xml:space="preserve">
@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 33 1 29 1 37"></polygon><polygon points="17 33 9 29 9 37"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#OrExp" xlink:title="OrExp" shape="rect"><rect x="31" y="19" width="58" height="32"></rect><rect x="29" y="17" width="58" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="37">OrExp</text></a><rect x="149" y="19" width="32" height="32" rx="10"></rect><rect x="147" y="17" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="157" y="37">||</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_pushOperator" xlink:title="f_pushOperator" shape="rect"><rect x="201" y="19" width="120" height="32"></rect><rect x="199" y="17" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="209" y="37">f_pushOperator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#OrExp" xlink:title="OrExp" shape="rect"><rect x="341" y="19" width="58" height="32"></rect><rect x="339" y="17" width="58" height="32" class="nonterminal"></rect><text class="nonterminal" x="349" y="37">OrExp</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_popOrExp" xlink:title="f_popOrExp" shape="rect"><rect x="419" y="19" width="94" height="32"></rect><rect x="417" y="17" width="94" height="32" class="nonterminal"></rect><text class="nonterminal" x="427" y="37">f_popOrExp</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m0 0 h10 m58 0 h10 m40 0 h10 m32 0 h10 m0 0 h10 m120 0 h10 m0 0 h10 m58 0 h10 m0 0 h10 m94 0 h10 m-404 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m384 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-384 0 h10 m0 0 h374 m-424 32 h20 m424 0 h20 m-464 0 q10 0 10 10 m444 0 q0 -10 10 -10 m-454 10 v14 m444 0 v-14 m-444 14 q0 10 10 10 m424 0 q10 0 10 -10 m-434 10 h10 m0 0 h414 m23 -34 h-3"></svg:path><polygon points="571 33 579 29 579 37"></polygon><polygon points="571 33 563 29 563 37"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Expression" title="Expression" shape="rect">Expression</a>
::= <a href="#OrExp" title="OrExp" shape="rect">OrExp</a> ( '||' <a href="#f_pushOperator" title="f_pushOperator" shape="rect">f_pushOperator</a> <a href="#OrExp" title="OrExp" shape="rect">OrExp</a> <a href="#f_popOrExp" title="f_popOrExp" shape="rect">f_popOrExp</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="#Assign" title="Assign">Assign</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Condition" title="Condition">Condition</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Cycle" title="Cycle">Cycle</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#DoCycle" title="DoCycle">DoCycle</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Factor" title="Factor">Factor</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Funct" title="Funct">Funct</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="OrExp">OrExp:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="612" height="68"><defs><style type="text/css" xml:space="preserve">
@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 33 1 29 1 37"></polygon><polygon points="17 33 9 29 9 37"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#AndExp" xlink:title="AndExp" shape="rect"><rect x="31" y="19" width="66" height="32"></rect><rect x="29" y="17" width="66" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="37">AndExp</text></a><rect x="157" y="19" width="40" height="32" rx="10"></rect><rect x="155" y="17" width="40" height="32" class="terminal" rx="10"></rect><text class="terminal" x="165" y="37">&&</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_pushOperator" xlink:title="f_pushOperator" shape="rect"><rect x="217" y="19" width="120" height="32"></rect><rect x="215" y="17" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="225" y="37">f_pushOperator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#AndExp" xlink:title="AndExp" shape="rect"><rect x="357" y="19" width="66" height="32"></rect><rect x="355" y="17" width="66" height="32" class="nonterminal"></rect><text class="nonterminal" x="365" y="37">AndExp</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_popAndExp" xlink:title="f_popAndExp" shape="rect"><rect x="443" y="19" width="102" height="32"></rect><rect x="441" y="17" width="102" height="32" class="nonterminal"></rect><text class="nonterminal" x="451" y="37">f_popAndExp</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m0 0 h10 m66 0 h10 m40 0 h10 m40 0 h10 m0 0 h10 m120 0 h10 m0 0 h10 m66 0 h10 m0 0 h10 m102 0 h10 m-428 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m408 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-408 0 h10 m0 0 h398 m-448 32 h20 m448 0 h20 m-488 0 q10 0 10 10 m468 0 q0 -10 10 -10 m-478 10 v14 m468 0 v-14 m-468 14 q0 10 10 10 m448 0 q10 0 10 -10 m-458 10 h10 m0 0 h438 m23 -34 h-3"></svg:path><polygon points="603 33 611 29 611 37"></polygon><polygon points="603 33 595 29 595 37"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#OrExp" title="OrExp" shape="rect">OrExp</a> ::= <a href="#AndExp" title="AndExp" shape="rect">AndExp</a> ( '&&' <a href="#f_pushOperator" title="f_pushOperator" shape="rect">f_pushOperator</a> <a href="#AndExp" title="AndExp" shape="rect">AndExp</a> <a href="#f_popAndExp" title="f_popAndExp" shape="rect">f_popAndExp</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="#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="AndExp">AndExp:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="122" height="36"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NotExp" xlink:title="NotExp" shape="rect"><rect x="31" y="3" width="64" height="32"></rect><rect x="29" y="1" width="64" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">NotExp</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m64 0 h10 m3 0 h-3"></svg:path><polygon points="113 17 121 13 121 21"></polygon><polygon points="113 17 105 13 105 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#AndExp" title="AndExp" shape="rect">AndExp</a> ::= <a href="#NotExp" title="NotExp" shape="rect">NotExp</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="#OrExp" title="OrExp">OrExp</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="NotExp">NotExp:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="494" height="80"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#BoolExp" xlink:title="BoolExp" shape="rect"><rect x="51" y="3" width="70" height="32"></rect><rect x="49" y="1" width="70" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="21">BoolExp</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#NOT" xlink:title="NOT" shape="rect"><rect x="51" y="47" width="46" height="32"></rect><rect x="49" y="45" width="46" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="65">NOT</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_pushOperator" xlink:title="f_pushOperator" shape="rect"><rect x="117" y="47" width="120" height="32"></rect><rect x="115" y="45" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="125" y="65">f_pushOperator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#BoolExp" xlink:title="BoolExp" shape="rect"><rect x="257" y="47" width="70" height="32"></rect><rect x="255" y="45" width="70" height="32" class="nonterminal"></rect><text class="nonterminal" x="265" y="65">BoolExp</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_popNotExp" xlink:title="f_popNotExp" shape="rect"><rect x="347" y="47" width="100" height="32"></rect><rect x="345" y="45" width="100" height="32" class="nonterminal"></rect><text class="nonterminal" x="355" y="65">f_popNotExp</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m70 0 h10 m0 0 h326 m-436 0 h20 m416 0 h20 m-456 0 q10 0 10 10 m436 0 q0 -10 10 -10 m-446 10 v24 m436 0 v-24 m-436 24 q0 10 10 10 m416 0 q10 0 10 -10 m-426 10 h10 m46 0 h10 m0 0 h10 m120 0 h10 m0 0 h10 m70 0 h10 m0 0 h10 m100 0 h10 m23 -44 h-3"></svg:path><polygon points="485 17 493 13 493 21"></polygon><polygon points="485 17 477 13 477 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#NotExp" title="NotExp" shape="rect">NotExp</a> ::= <a href="#BoolExp" title="BoolExp" shape="rect">BoolExp</a>
| <a href="#NOT" title="NOT" shape="rect">NOT</a> <a href="#f_pushOperator" title="f_pushOperator" shape="rect">f_pushOperator</a> <a href="#BoolExp" title="BoolExp" shape="rect">BoolExp</a> <a href="#f_popNotExp" title="f_popNotExp" shape="rect">f_popNotExp</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="#AndExp" title="AndExp">AndExp</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="NEWLINE">NEWLINE:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="202" height="36"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="31" y="3" width="36" height="32" rx="10"></rect><rect x="29" y="1" width="36" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">\n</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_resetTab" xlink:title="f_resetTab" shape="rect"><rect x="87" y="3" width="88" height="32"></rect><rect x="85" y="1" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="95" y="21">f_resetTab</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m36 0 h10 m0 0 h10 m88 0 h10 m3 0 h-3"></svg:path><polygon points="193 17 201 13 201 21"></polygon><polygon points="193 17 185 13 185 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#NEWLINE" title="NEWLINE" shape="rect">NEWLINE</a> ::= '\n' <a href="#f_resetTab" title="f_resetTab" shape="rect">f_resetTab</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="#Assign" title="Assign">Assign</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Condition" title="Condition">Condition</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Cycle" title="Cycle">Cycle</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#DoCycle" title="DoCycle">DoCycle</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Functions" title="Functions">Functions</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Statement" title="Statement">Statement</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#Vars" title="Vars">Vars</xhtml:a></xhtml:li><xhtml:li><xhtml:a href="#moreTabs" title="moreTabs">moreTabs</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="BoolExp">BoolExp:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="458" height="272"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Exp" xlink:title="Exp" shape="rect"><rect x="31" y="3" width="42" height="32"></rect><rect x="29" y="1" width="42" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="21">Exp</text></a><rect x="133" y="3" width="30" height="32" rx="10"></rect><rect x="131" y="1" width="30" height="32" class="terminal" rx="10"></rect><text class="terminal" x="141" y="21">></text><rect x="133" y="47" width="30" height="32" rx="10"></rect><rect x="131" y="45" width="30" height="32" class="terminal" rx="10"></rect><text class="terminal" x="141" y="65"><</text><rect x="133" y="91" width="40" height="32" rx="10"></rect><rect x="131" y="89" width="40" height="32" class="terminal" rx="10"></rect><text class="terminal" x="141" y="109">>=</text><rect x="133" y="135" width="40" height="32" rx="10"></rect><rect x="131" y="133" width="40" height="32" class="terminal" rx="10"></rect><text class="terminal" x="141" y="153"><=</text><rect x="133" y="179" width="34" height="32" rx="10"></rect><rect x="131" y="177" width="34" height="32" class="terminal" rx="10"></rect><text class="terminal" x="141" y="197">!=</text><rect x="133" y="223" width="40" height="32" rx="10"></rect><rect x="131" y="221" width="40" height="32" class="terminal" rx="10"></rect><text class="terminal" x="141" y="241">==</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Exp" xlink:title="Exp" shape="rect"><rect x="213" y="3" width="42" height="32"></rect><rect x="211" y="1" width="42" height="32" class="nonterminal"></rect><text class="nonterminal" x="221" y="21">Exp</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_popComparation" xlink:title="f_popComparation" shape="rect"><rect x="275" y="3" width="136" height="32"></rect><rect x="273" y="1" width="136" height="32" class="nonterminal"></rect><text class="nonterminal" x="283" y="21">f_popComparation</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m42 0 h10 m40 0 h10 m30 0 h10 m0 0 h10 m-80 0 h20 m60 0 h20 m-100 0 q10 0 10 10 m80 0 q0 -10 10 -10 m-90 10 v24 m80 0 v-24 m-80 24 q0 10 10 10 m60 0 q10 0 10 -10 m-70 10 h10 m30 0 h10 m0 0 h10 m-70 -10 v20 m80 0 v-20 m-80 20 v24 m80 0 v-24 m-80 24 q0 10 10 10 m60 0 q10 0 10 -10 m-70 10 h10 m40 0 h10 m-70 -10 v20 m80 0 v-20 m-80 20 v24 m80 0 v-24 m-80 24 q0 10 10 10 m60 0 q10 0 10 -10 m-70 10 h10 m40 0 h10 m-70 -10 v20 m80 0 v-20 m-80 20 v24 m80 0 v-24 m-80 24 q0 10 10 10 m60 0 q10 0 10 -10 m-70 10 h10 m34 0 h10 m0 0 h6 m-70 -10 v20 m80 0 v-20 m-80 20 v24 m80 0 v-24 m-80 24 q0 10 10 10 m60 0 q10 0 10 -10 m-70 10 h10 m40 0 h10 m20 -220 h10 m42 0 h10 m0 0 h10 m136 0 h10 m-338 0 h20 m318 0 h20 m-358 0 q10 0 10 10 m338 0 q0 -10 10 -10 m-348 10 v234 m338 0 v-234 m-338 234 q0 10 10 10 m318 0 q10 0 10 -10 m-328 10 h10 m0 0 h308 m23 -254 h-3"></svg:path><polygon points="449 17 457 13 457 21"></polygon><polygon points="449 17 441 13 441 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#BoolExp" title="BoolExp" shape="rect">BoolExp</a> ::= <a href="#Exp" title="Exp" shape="rect">Exp</a> ( ( '>' | '<' | '>=' | '<=' | '!=' | '==' ) <a href="#Exp" title="Exp" shape="rect">Exp</a> <a href="#f_popComparation" title="f_popComparation" shape="rect">f_popComparation</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="#NotExp" title="NotExp">NotExp</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="Exp">Exp:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="594" height="112"><defs><style type="text/css" xml:space="preserve">
@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 33 1 29 1 37"></polygon><polygon points="17 33 9 29 9 37"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Term" xlink:title="Term" shape="rect"><rect x="31" y="19" width="50" height="32"></rect><rect x="29" y="17" width="50" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="37">Term</text></a><rect x="161" y="19" width="30" height="32" rx="10"></rect><rect x="159" y="17" width="30" height="32" class="terminal" rx="10"></rect><text class="terminal" x="169" y="37">+</text><rect x="161" y="63" width="26" height="32" rx="10"></rect><rect x="159" y="61" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="169" y="81">-</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_pushOperator" xlink:title="f_pushOperator" shape="rect"><rect x="231" y="19" width="120" height="32"></rect><rect x="229" y="17" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="239" y="37">f_pushOperator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Term" xlink:title="Term" shape="rect"><rect x="371" y="19" width="50" height="32"></rect><rect x="369" y="17" width="50" height="32" class="nonterminal"></rect><text class="nonterminal" x="379" y="37">Term</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_popTerm" xlink:title="f_popTerm" shape="rect"><rect x="441" y="19" width="86" height="32"></rect><rect x="439" y="17" width="86" height="32" class="nonterminal"></rect><text class="nonterminal" x="449" y="37">f_popTerm</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m0 0 h10 m50 0 h10 m60 0 h10 m30 0 h10 m-70 0 h20 m50 0 h20 m-90 0 q10 0 10 10 m70 0 q0 -10 10 -10 m-80 10 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 m20 -44 h10 m120 0 h10 m0 0 h10 m50 0 h10 m0 0 h10 m86 0 h10 m-426 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m406 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-406 0 h10 m0 0 h396 m-446 32 h20 m446 0 h20 m-486 0 q10 0 10 10 m466 0 q0 -10 10 -10 m-476 10 v58 m466 0 v-58 m-466 58 q0 10 10 10 m446 0 q10 0 10 -10 m-456 10 h10 m0 0 h436 m23 -78 h-3"></svg:path><polygon points="585 33 593 29 593 37"></polygon><polygon points="585 33 577 29 577 37"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Exp" title="Exp" shape="rect">Exp</a> ::= <a href="#Term" title="Term" shape="rect">Term</a> ( ( '+' | '-' ) <a href="#f_pushOperator" title="f_pushOperator" shape="rect">f_pushOperator</a> <a href="#Term" title="Term" shape="rect">Term</a> <a href="#f_popTerm" title="f_popTerm" shape="rect">f_popTerm</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="#BoolExp" title="BoolExp">BoolExp</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="622" height="156"><defs><style type="text/css" xml:space="preserve">
@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 33 1 29 1 37"></polygon><polygon points="17 33 9 29 9 37"></polygon><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Factor" xlink:title="Factor" shape="rect"><rect x="31" y="19" width="58" height="32"></rect><rect x="29" y="17" width="58" height="32" class="nonterminal"></rect><text class="nonterminal" x="39" y="37">Factor</text></a><rect x="169" y="19" width="28" height="32" rx="10"></rect><rect x="167" y="17" width="28" height="32" class="terminal" rx="10"></rect><text class="terminal" x="177" y="37">*</text><rect x="169" y="63" width="28" height="32" rx="10"></rect><rect x="167" y="61" width="28" height="32" class="terminal" rx="10"></rect><text class="terminal" x="177" y="81">/</text><rect x="169" y="107" width="34" height="32" rx="10"></rect><rect x="167" y="105" width="34" height="32" class="terminal" rx="10"></rect><text class="terminal" x="177" y="125">%</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_pushOperator" xlink:title="f_pushOperator" shape="rect"><rect x="243" y="19" width="120" height="32"></rect><rect x="241" y="17" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="251" y="37">f_pushOperator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Factor" xlink:title="Factor" shape="rect"><rect x="383" y="19" width="58" height="32"></rect><rect x="381" y="17" width="58" height="32" class="nonterminal"></rect><text class="nonterminal" x="391" y="37">Factor</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_popFactor" xlink:title="f_popFactor" shape="rect"><rect x="461" y="19" width="94" height="32"></rect><rect x="459" y="17" width="94" height="32" class="nonterminal"></rect><text class="nonterminal" x="469" y="37">f_popFactor</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 33 h2 m0 0 h10 m58 0 h10 m60 0 h10 m28 0 h10 m0 0 h6 m-74 0 h20 m54 0 h20 m-94 0 q10 0 10 10 m74 0 q0 -10 10 -10 m-84 10 v24 m74 0 v-24 m-74 24 q0 10 10 10 m54 0 q10 0 10 -10 m-64 10 h10 m28 0 h10 m0 0 h6 m-64 -10 v20 m74 0 v-20 m-74 20 v24 m74 0 v-24 m-74 24 q0 10 10 10 m54 0 q10 0 10 -10 m-64 10 h10 m34 0 h10 m20 -88 h10 m120 0 h10 m0 0 h10 m58 0 h10 m0 0 h10 m94 0 h10 m-446 0 l20 0 m-1 0 q-9 0 -9 -10 l0 -12 q0 -10 10 -10 m426 32 l20 0 m-20 0 q10 0 10 -10 l0 -12 q0 -10 -10 -10 m-426 0 h10 m0 0 h416 m-466 32 h20 m466 0 h20 m-506 0 q10 0 10 10 m486 0 q0 -10 10 -10 m-496 10 v102 m486 0 v-102 m-486 102 q0 10 10 10 m466 0 q10 0 10 -10 m-476 10 h10 m0 0 h456 m23 -122 h-3"></svg:path><polygon points="613 33 621 29 621 37"></polygon><polygon points="613 33 605 29 605 37"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Term" title="Term" shape="rect">Term</a> ::= <a href="#Factor" title="Factor" shape="rect">Factor</a> ( ( '*' | '/' | '%' ) <a href="#f_pushOperator" title="f_pushOperator" shape="rect">f_pushOperator</a> <a href="#Factor" title="Factor" shape="rect">Factor</a> <a href="#f_popFactor" title="f_popFactor" shape="rect">f_popFactor</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="#Exp" title="Exp">Exp</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="Factor">Factor:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="550" height="124"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="51" y="3" width="26" height="32" rx="10"></rect><rect x="49" y="1" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">(</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_pushOperator" xlink:title="f_pushOperator" shape="rect"><rect x="97" y="3" width="120" height="32"></rect><rect x="95" y="1" width="120" height="32" class="nonterminal"></rect><text class="nonterminal" x="105" y="21">f_pushOperator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Expression" xlink:title="Expression" shape="rect"><rect x="237" y="3" width="88" height="32"></rect><rect x="235" y="1" width="88" height="32" class="nonterminal"></rect><text class="nonterminal" x="245" y="21">Expression</text></a><rect x="345" y="3" width="26" height="32" rx="10"></rect><rect x="343" y="1" width="26" height="32" class="terminal" rx="10"></rect><text class="terminal" x="353" y="21">)</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_popOperator" xlink:title="f_popOperator" shape="rect"><rect x="391" y="3" width="112" height="32"></rect><rect x="389" y="1" width="112" height="32" class="nonterminal"></rect><text class="nonterminal" x="399" y="21">f_popOperator</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Cvar" xlink:title="Cvar" shape="rect"><rect x="51" y="47" width="48" height="32"></rect><rect x="49" y="45" width="48" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="65">Cvar</text></a><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#Funct" xlink:title="Funct" shape="rect"><rect x="51" y="91" width="54" height="32"></rect><rect x="49" y="89" width="54" height="32" class="nonterminal"></rect><text class="nonterminal" x="59" y="109">Funct</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m26 0 h10 m0 0 h10 m120 0 h10 m0 0 h10 m88 0 h10 m0 0 h10 m26 0 h10 m0 0 h10 m112 0 h10 m-492 0 h20 m472 0 h20 m-512 0 q10 0 10 10 m492 0 q0 -10 10 -10 m-502 10 v24 m492 0 v-24 m-492 24 q0 10 10 10 m472 0 q10 0 10 -10 m-482 10 h10 m48 0 h10 m0 0 h404 m-482 -10 v20 m492 0 v-20 m-492 20 v24 m492 0 v-24 m-492 24 q0 10 10 10 m472 0 q10 0 10 -10 m-482 10 h10 m54 0 h10 m0 0 h398 m23 -88 h-3"></svg:path><polygon points="541 17 549 13 549 21"></polygon><polygon points="541 17 533 13 533 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Factor" title="Factor" shape="rect">Factor</a> ::= '(' <a href="#f_pushOperator" title="f_pushOperator" shape="rect">f_pushOperator</a> <a href="#Expression" title="Expression" shape="rect">Expression</a> ')' <a href="#f_popOperator" title="f_popOperator" shape="rect">f_popOperator</a>
| <a href="#Cvar" title="Cvar" shape="rect">Cvar</a>
| <a href="#Funct" title="Funct" shape="rect">Funct</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="#Term" title="Term">Term</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="Cvar">Cvar:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="310" height="212"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="51" y="3" width="32" height="32" rx="10"></rect><rect x="49" y="1" width="32" height="32" class="terminal" rx="10"></rect><text class="terminal" x="59" y="21">id</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_isID" xlink:title="f_isID" shape="rect"><rect x="103" y="3" width="56" height="32"></rect><rect x="101" y="1" width="56" height="32" class="nonterminal"></rect><text class="nonterminal" x="111" y="21">f_isID</text></a><rect x="71" y="47" width="52" height="32" rx="10"></rect><rect x="69" y="45" width="52" height="32" class="terminal" rx="10"></rect><text class="terminal" x="79" y="65">c_int</text><rect x="71" y="91" width="66" height="32" rx="10"></rect><rect x="69" y="89" width="66" height="32" class="terminal" rx="10"></rect><text class="terminal" x="79" y="109">c_float</text><rect x="71" y="135" width="64" height="32" rx="10"></rect><rect x="69" y="133" width="64" height="32" class="terminal" rx="10"></rect><text class="terminal" x="79" y="153">c_bool</text><rect x="71" y="179" width="74" height="32" rx="10"></rect><rect x="69" y="177" width="74" height="32" class="terminal" rx="10"></rect><text class="terminal" x="79" y="197">c_string</text><a xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#f_isConst" xlink:title="f_isConst" shape="rect"><rect x="185" y="47" width="78" height="32"></rect><rect x="183" y="45" width="78" height="32" class="nonterminal"></rect><text class="nonterminal" x="193" y="65">f_isConst</text></a><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m20 0 h10 m32 0 h10 m0 0 h10 m56 0 h10 m0 0 h104 m-252 0 h20 m232 0 h20 m-272 0 q10 0 10 10 m252 0 q0 -10 10 -10 m-262 10 v24 m252 0 v-24 m-252 24 q0 10 10 10 m232 0 q10 0 10 -10 m-222 10 h10 m52 0 h10 m0 0 h22 m-114 0 h20 m94 0 h20 m-134 0 q10 0 10 10 m114 0 q0 -10 10 -10 m-124 10 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m66 0 h10 m0 0 h8 m-104 -10 v20 m114 0 v-20 m-114 20 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m64 0 h10 m0 0 h10 m-104 -10 v20 m114 0 v-20 m-114 20 v24 m114 0 v-24 m-114 24 q0 10 10 10 m94 0 q10 0 10 -10 m-104 10 h10 m74 0 h10 m20 -132 h10 m78 0 h10 m23 -44 h-3"></svg:path><polygon points="301 17 309 13 309 21"></polygon><polygon points="301 17 293 13 293 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#Cvar" title="Cvar" shape="rect">Cvar</a> ::= 'id' <a href="#f_isID" title="f_isID" shape="rect">f_isID</a>
| ( 'c_int' | 'c_float' | 'c_bool' | 'c_string' ) <a href="#f_isConst" title="f_isConst" shape="rect">f_isConst</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="#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="f_loadVispiFunctions">f_loadVispiFunctions:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="612" height="36"><defs><style type="text/css" xml:space="preserve">
@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><polygon points="17 17 9 13 9 21"></polygon><rect x="31" y="3" width="554" height="32" rx="10"></rect><rect x="29" y="1" width="554" height="32" class="terminal" rx="10"></rect><text class="terminal" x="39" y="21">carga las funciones predefinidas de nuestro lenguaje en el dir. de procedimientos</text><svg:path xmlns:svg="http://www.w3.org/2000/svg" class="line" d="m17 17 h2 m0 0 h10 m554 0 h10 m3 0 h-3"></svg:path><polygon points="603 17 611 13 611 21"></polygon><polygon points="603 17 595 13 595 21"></polygon></svg><xhtml:p xmlns:xhtml="http://www.w3.org/1999/xhtml"><xhtml:div class="ebnf"><xhtml:pre><a href="#f_loadVispiFunctions" title="f_loadVispiFunctions" shape="rect">f_loadVispiFunctions</a>
::= 'carga las funciones predefinidas de nuestro lenguaje en el dir. de procedimientos'</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="#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="f_saveType">f_saveType:</xhtml:a></xhtml:p><svg xmlns="http://www.w3.org/2000/svg" width="702" height="36"><defs><style type="text/css" xml:space="preserve">
@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;