-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparseo 2023.html
1161 lines (1038 loc) · 42.9 KB
/
parseo 2023.html
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>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>AST Tree.</title>
</head>
<body>
<p>Página de algoritmos de parseo, evaluación y árboles abstractos.</p>
<p>Lic. Luis Guillermo Bultet Ibles. 2023. Cuba.</p>
<br>
<script>
// Hay que incluir variables, y luego...
// Hay que incluir en el tratamiento de funciones en las expresiones del siguiente árbol, mediante la siguiente estructura:
let functionSet = [
{name: 'acos', func: x => Math.acos(x)},
{name: 'asin', func: x => Math.asin(x)},
{name: 'atan', func: x => Math.atan(x)},
{name: 'cosh', func: x => Math.cosh(x)},
{name: 'sinh', func: x => Math.sinh(x)},
{name: 'atanh', func: x => Math.atanh(x)},
{name: 'cos', func: x => Math.cos(x)},
{name: 'sin', func: x => Math.sin(x)},
{name: 'sins', func: x => Math.sinh(x)},
{name: 'tan', func: x => Math.tan(x)},
{name: 'tanh', func: x => Math.tanh(x)},
{name: 'ln', func: x => Math.log(x)},
{name: 'log', func: (x, y) => Math.log(x) / Math.log(y)},
];
// Luego, incluir las rutinas o la filosofía de
const descompilarScript = (str) => {
// Sintactical analizer (nexto to where the operator in position ends).
// TOKEN COMMENT
// Verfica que la primera sentencia de la cadena es un comentario correcto., TESTED 13:54|21/04/2022
function esComentario(line) {
return left(line.trim(), 2) === '//' || ((left(line.trim(), 2) === '/*') && sintaxCheck(line, line.indexOf('//') + 2));
}
// Extraer comentario en la variable por referencia comentario y devolver el resto... ok
function extraerComentario(line, comentario) {
comentario = '';
var myLine = '';
myLine = line.trim();
var posicionComentario = sintaxCheck(myLine, 0);
comentario = myLine.substring(0, posicionComentario);
line = myLine.substr(posicionComentario);
return {type: 'comment', content: comentario.trim(), remainder: line};
}
// TOKEN STRING
// Verfica que la primera instancia de cadena esté bien formada y devuelve su posición final., TESTED 13:54|21/04/2022
function esCadena(line) {
var posicion;
for (let index = 0; index < 3; index++) {
const stringSeparator = ['\'', '`', '"'][index];
if (left(line.trim(), 1) === stringSeparator) {
posicion = line.indexOf(stringSeparator, line.indexOf(stringSeparator) + 1);
if (posicion !== -1) {
return posicion; // eureka
}
}
}
return false;
}
// Extraer una cadena en la variable por referencia comentario y devolver el resto... ok
function extraerCadena(line) {
var isIt = esCadena(line);
return {
type: 'string literal',
content: line.substr(0, isIt + 1),
remainder: line.substr(isIt + 1),
};
}
// TOKEN PARENTHESIS
// Verfica que el primer elemento sea un paréntesis y que esté correctamente cerrado
function esParenthesis(line) {
return left(line.trim(), 1) === '(' && sintaxCheck(line, line.indexOf('(') !== -1);
}
// Extraer comentario en la variable por referencia comentario y devolver el resto... ok
function extraerParenthesis(line) {
line = String(line);
var abreEn = line.indexOf('(');
var cierraEn = sintaxCheck(line, abreEn);
var cont = descompilarScript(line.substring(abreEn + 1, cierraEn - 1));
var resto = line.substring(cierraEn);
return {type: 'parenthesis', content: cont, remainder: resto};
}
// TOKEN IDENTIFIER
// Determinar si es un identificador
function esIdentificador(line) {
if ((!line) || (line.length === 0) || isNumericAt(line, 0)) {
return false;
}
var posicion = 0;
while ((posicion < line.length - 1) && isAlphanumericAt(line, posicion)) {
posicion++;
}
return posicion;
}
function extraerIdentificador(line) {
if (!line || line.length === 0 || isNumericAt(line, 0)) {
return false;
}
var posicion = esIdentificador(line);
var name = line.substr(0, posicion);
line = line.substring(posicion);
return {type: 'identifier', content: name, remainder: line.trim()};
}
// TOKEN NUMBER
// Determinar si es un identificador
function esNumero(line) {
if ((!line) || (line.length === 0) || !isNumericAt(line, 0)) {
return false;
}
var posicion = 0;
while (posicion < line.length - 1 && isNumericAt(line, posicion)) {
posicion++;
}
return posicion;
}
function extraerNumero(line) {
var posicion = esNumero(line);
var value = line.substr(0, posicion);
line = line.substring(posicion);
return {type: 'number', content: value, remainder: line.trim()};
}
// TOKEN FUNCTION (usar este mismo modelo para el while cuando código...)
function esFuncion(line) {
// Determinar si es una función
line = line.trim();
if (comienzaCon(line, 'function')) {
var firstParBeg = line.indexOf('(');
if (firstParBeg === -1) return false;
var firstParEnd = sintaxCheck(line, line.indexOf('('));
if (firstParEnd === -1) return false;
var corpusBeg = line.indexOf('{');
if (corpusBeg === -1 || corpusBeg < firstParEnd) return false;
var corpusEnd = sintaxCheck(line, line.indexOf('{'));
return true;
}
return false;
}
function extraerFuncion(line) {
var firstParBeg = line.indexOf('(');
var firstParEnd = sintaxCheck(line, line.indexOf('('));
var corpusBeg = line.indexOf('{');
if (corpusBeg < firstParEnd) return false;
var corpusEnd = sintaxCheck(line, corpusBeg);
var resultado = {};
resultado.type = 'function';
resultado.name = line.substring(String('function').length, line.firstParBeg - 1).trim();
resultado.parameters = line.substring(firstParBeg + 1, firstParEnd).split(',').filter((x) => x.trim() !== '');
resultado.content = line.substring(corpusBeg + 1, corpusEnd);
resultado.remainder = line.substring(corpusEnd + 1);
return resultado;
}
// TOKEN CLASS DECLARATION
// export class FormulaEntity extends GenericEntity implements fulano {
// ok tested
function obtenerProximoIdentificador(cadena) {
if (!cadena) {
return '';
}
var tmp = String(cadena).trim();
if ((tmp.length === 0) || isNumericAt(tmp, 0)) {
return '';
}
var posicion = 1;
var result = '';
while ((posicion < tmp.length) && isAlphanumericAt(tmp, posicion)) {
posicion++;
}
if (esIdentificador(tmp)) {
result = tmp.substring(0, posicion).trim();
}
return result;
}
// recortar por la izquierda a la cadena, con tantos caracteres como aparezcan el caracteres... ok tested
function recortarPorlaIzquierda(cadena, caracteres) {
if (!cadena || cadena.length === 0 || caracteres > cadena.length) {
return '';
}
return String(cadena).substring(caracteres);
}
function esDeclaracionDeClase(line) {
var next, tmp = line.trim();
var lista = [];
var result = {name: next, exported: false, extends: null, implements: []};
// Parseo rápido de identificadores por espacio antes del primer símbolo
next = obtenerProximoIdentificador(tmp);
tmp = recortarPorlaIzquierda(tmp, next.length).trim();
while (next !== '' && tmp.trim().length !== 0) {
lista.push(next);
next = obtenerProximoIdentificador(tmp);
tmp = recortarPorlaIzquierda(tmp, next.length).trim();
}
var declaraClase = false;
var identificadorDesconocido = false;
for (let index = 0; index < lista.length - 1; index++) {
const element = lista[index];
switch (element) {
case 'export':
case 'extends':
case 'implements': {
break;
}
case 'class': {
declaraClase = true;
break;
}
}
}
if (!esBloque(tmp)) return false;
return declaraClase && esBloque(tmp) !== -1 ? true : false;
}
function extraerDeclaracionDeClase(line) {
var next, tmp = line.trim();
var lista = [];
var result = {name: next, type: 'class', exported: false, extends: null, implements: []};
// Parseo rápido de identificadores por espacio antes del primer símbolo
next = obtenerProximoIdentificador(tmp);
tmp = recortarPorlaIzquierda(tmp, next.length).trim();
while (next !== '' && tmp.trim().length !== 0) {
lista.push(next);
next = obtenerProximoIdentificador(tmp);
tmp = recortarPorlaIzquierda(tmp, next.length).trim();
}
for (let index = 0; index < lista.length - 1; index++) {
const element = lista[index];
switch (element) {
case 'export': {
result.exported = true;
break;
}
case 'class': {
result.name = lista[index + 1];
break;
}
case 'extends': {
result.extends = lista[index + 1];
break;
}
case 'implements': {
result.implements.push(lista[index + 1]);
break;
}
}
}
result.content = descompilarScript(tmp);
if (result.content.length > 0 && result.content[0].type === 'block') {
if (!(result.content[0].body instanceof Array)) {
result.body = [];
} else {
result.body = result.content[0].body;
}
delete result.content;
}
result.remainder = line.substring(1 + sintaxCheck(line, line.indexOf('{')));
// se agregan los atributos al objeto clase
var attributes = [];
var downC = 0;
let tipoRelacion = '';
let nulabilidad = false;
let nullable = false;
while (downC < result.body.length - 3) {
if (result.body[downC].type === 'decorator' && result.body[downC].content === '@Column') {
let bloques = result.body[downC + 1].content;
for (let i = 0; i < bloques.length; i++) {
if (bloques[i].body && bloques[i].body.some(item => item.content === 'nullable')) {
let pos = bloques[i].body.findIndex(item => item.content === 'nullable');
nulabilidad = (pos !== -1);
if (nulabilidad) {
nullable = bloques[i].body[pos + 2].content;
}
}
}
}
if (result.body[downC].type === 'decorator' && (result.body[downC].content === '@OneToOne' || result.body[downC].content === '@ManyToOne' || result.body[downC].content === '@ManyToMany' || result.body[downC].content === '@OneToMany')) {
tipoRelacion = result.body[downC].content;
let bloques = result.body[downC + 1].content;
for (let i = 0; i < bloques.length; i++) {
if (bloques[i].type === 'block' && bloques[i].body.some(item => item.content === 'nullable')) {
let pos = bloques[i].body.findIndex(item => item.content === 'nullable');
nulabilidad = (pos !== -1);
if (nulabilidad) {
nullable = bloques[i].body[pos + 2].content;
}
}
}
}
if (result.body[downC].type === 'identifier' && result.body[downC + 1].type === 'symbol' && result.body[downC + 2].type === 'identifier') {
let objeto = {
type: 'attribute',
name: result.body[downC].content,
kind: result.body[downC + 2].content,
};
if (tipoRelacion !== '') {
objeto.relation = tipoRelacion;
tipoRelacion = '';
}
if (nulabilidad) {
objeto.nullable = nullable;
}
nulabilidad = false;
attributes.push(objeto);
downC = downC + 3;
} else {
downC++;
}
}
result.attributes = attributes;
// Recorrer el body buscando un token de type "identifier", seguidos de "parenthesis"
// Cuando lo encuentre, eso es un método... hasta el token de tipo "block"
return result;
}
// TOKEN CLASS CONSTRUCTOR (que puede estar y a su vez no es un CLASS DECARATION)
function esConstructorDeClase(line) {
// Determinar si es una función
line = line.trim();
if (comienzaCon(line, 'constructor')) {
var firstParBeg = line.indexOf('(');
if (firstParBeg === false) return false;
var firstParEnd = sintaxCheck(line, line.indexOf('('));
if (firstParEnd === false) return false;
var corpusBeg = line.indexOf('{');
if (corpusBeg === false || corpusBeg < firstParEnd) return false;
var corpusEnd = sintaxCheck(line, line.indexOf('{'));
if (corpusEnd === false) return false;
return true;
}
return false;
}
function extraerConstructorDeClase(line) {
var firstParBeg = line.indexOf('(');
var firstParEnd = sintaxCheck(line, line.indexOf('('));
var corpusBeg = line.indexOf('{');
if (corpusBeg < firstParEnd) return false;
var corpusEnd = sintaxCheck(line, corpusBeg);
var resultado = {};
resultado.type = 'constructor';
// pueden aparecer parámetros en blanco...
resultado.parameters = line.substring(firstParBeg + 1, firstParEnd - 1).split(',').filter((x) => x.trim() !== '');
resultado.content = descompilarScript(line.substring(corpusBeg + 1, corpusEnd - 1));
resultado.remainder = line.substring(corpusEnd + 1);
for (var index = 0; index < resultado.parameters.length; index++) {
const element = resultado.parameters[index];
if (element.indexOf(':') !== -1) {
// if the perameter is in typescript, pascal, format? Refactorize
resultado.parameters[index] = {
'name': element.substring(0, element.indexOf(':')).trim(),
'type': element.substring(element.indexOf(':') + 1).trim(),
};
} else {
resultado.parameters[index] = {'name': element.trim(), 'type': null}; // as it was in javascript, now and forever.
}
}
return resultado;
}
// TOKEN RESERVED WORD
function esPalabraReservada(line) {
// Determinar si es una palabra reservada
const palabrasReservadas = ['abstract', 'boolean', 'break', 'byte', 'case', 'catch',
'class', 'const', 'do', 'for', 'function', 'if', 'let',
'return', 'var', 'while', 'char', 'continue', 'default',
'do', 'double', 'else', 'extends', 'false', 'final', 'finally',
'float', 'for', 'implements', 'import', 'int',
'interface', 'long', 'native', 'new', 'null', 'package', 'private',
'protected', 'public', 'short', 'static', 'super', 'switch', 'syncronized', 'this',
'throw', 'throws', 'transient', 'true', 'try', 'void', 'volatile', 'rest', 'byvalue',
'cast', 'const', 'future', 'generic', 'goto', 'inner', 'operator', 'outer', 'experimental'];
var savedLine = line.trim();
for (var i = 0; i < palabrasReservadas.length; i++) {
if (left(savedLine, String(palabrasReservadas[i]).length) === palabrasReservadas[i]) {
return true;
}
}
return false;
}
function extraerPalabraReservada(line) {
var resultado;
resultado = extraerIdentificador(line);
resultado.type = 'reserved word';
return resultado;
}
// TOKEN IMPORT
// Extraer la importación en la variable por referencia comentario y devolver el resto... ok
function esImportacion(line) {
return comienzaCon(line.trim(), 'import'); // fix
}
// Extraer la importación en la variable por referencia comentario y devolver el resto... ok
// recueda que puede darse el caso de: import * from '.'; import identificador1 from '.';
function extraerImportaciones(line) {
var importaciones = [];
var myLine = '';
myLine = line.trim();
if (esImportacion(line)) {
myLine = line.substring(0, line.indexOf(';'));
if (!myLine) {
throw new Error('La importación no está bien formada o falta el símbolo de ;.');
}
var imStr = transformar(myLine, 'import %a from %b', '%a');
if (esBloque(imStr)) {
imStr = imStr.substring(1, imStr.length - 1).trim();
}
var pathStr = transformar(myLine, 'import %a from %b', '%b');
}
line = line.substring(line.indexOf(';') + 1);
var resultado = {};
resultado.type = 'import';
resultado.modules = imStr;
resultado.path = pathStr;
resultado.remainder = line.trim();
return resultado;
}
// DECORATOR IMPORT here
// Determinar si es un identificador
function esDecorador(line) {
if ((!line) || (line.length === 0) || isNumericAt(line.trim(), 0)) {
return false;
}
line = line.trim();
var posicion = 0;
return isEqualAt(line, '@', 0) && isAlphanumericAt(line, 1);
}
// Extraer la importación en la variable por referencia comentario y devolver el resto... ok
function extraerDecorador(line) {
var resultado;
if (esIdentificador(line)) {
resultado = extraerIdentificador(line);
}
if (resultado) {
resultado.type = 'decorator';
}
return resultado;
}
// Es un bloque, verificar si es un bloque...
// Determinar si es un identificador
function esBloque(line) {
if ((!line) || (line.length === 0)) {
return false;
}
line = line.trim();
return (left(line, 1) === '{' && sintaxCheck(line, 0) !== -1);
}
// Extraer la importación en la variable por referencia comentario y devolver el resto... ok
function extraerBloque(line) {
var resultado;
line = line.trim();
if (esBloque(line)) {
var posicionFinBloque = sintaxCheck(line, 0);
var contenido = line.substring(1, posicionFinBloque - 1);
line = line.substring(posicionFinBloque + 1);
resultado = {
type: 'block',
body: descompilarScript(contenido),
remainder: line.substring(sintaxCheck(line, line.indexOf('{')) + 1),
};
}
return resultado;
}
// TOKEN OPERATOR
function esOperador(line) {
// Determinar si es un operador
const operadores = ['instanceof', 'typeof', '>>>=', '>>>', '>>=', '<>=', '===', '!==', '<=', '>=', '&&', '||', '++', '--', '+=', '-=', '*=', '/=', '%=', '^=', '&=', '!=', '|=', '&', '|', '^', '', '<', '>', '-', '!', '~', '+', '-', '*', '/', '%', ';', ',', '=>'];
var savedLine = line.trim();
for (var i = 0; i < operadores.length; i++) {
if (left(savedLine, operadores[i].length) === operadores[i]) {
return operadores[i];
}
}
return false;
}
function extraerOperador(line) {
var sysOp = esOperador(line);
var resultado = {};
resultado.type = 'operator';
resultado.content = sysOp;
line = line.substring(sysOp.length);
resultado.remainder = line;
return resultado;
}
// TOKEN SYMBOL
function esSimbolo(line) {
// Determinar si es un operador
const simbolos = [';', '.', '@', '#', '$', '%', '^', '&', '*', '~', ':', '{', '}', '=', '[', ']', ',', '>', '<'];
var savedLine = line.trim();
for (var i = 0; i < simbolos.length; i++) {
if (left(savedLine, String(simbolos[i]).length) === simbolos[i]) {
return simbolos[i];
}
}
return false;
}
function extraerSimbolo(line) {
var sysOp = esSimbolo(line);
var resultado = {};
resultado.type = 'symbol';
resultado.content = sysOp;
line = line.substring(sysOp.length);
resultado.remainder = line.trim();
return resultado;
}
//main
if (!str || str === '') return {};
str = String(str).trim();
// Primero
let datos = [];
// Se procesa al entidad completa...
var decorators = [];
str = str.trim();
while (str && str !== '') {
// alert(JSON.stringify(datos)); // keep for debug purposes...
// eliminar espacios
if (esBloque(str)) {
datos.push(extraerBloque(str));
} else if (esOperador(str)) {
datos.push(extraerOperador(str));
} else if (esComentario(str)) {
datos.push(extraerComentario(str));
} else if (esImportacion(str)) {
datos.push(extraerImportaciones(str));
} else if (esDecorador(str)) {
datos.push(extraerDecorador(str));
} else if (esSimbolo(str)) {
datos.push(extraerSimbolo(str));
} else if (esFuncion(str)) {
datos.push(extraerFuncion(str));
} else if (esConstructorDeClase(str)) {
datos.push(extraerConstructorDeClase(str));
} else if (esDeclaracionDeClase(str)) {
datos.push(extraerDeclaracionDeClase(str));
// } else if (esPalabraReservada(str)) {
// datos.push(extraerPalabraReservada(str));
} else if (esIdentificador(str)) {
datos.push(extraerIdentificador(str));
} else if (esCadena(str)) {
datos.push(extraerCadena(str));
} else if (esNumero(str)) {
datos.push(extraerNumero(str));
} else if (esParenthesis(str)) {
datos.push(extraerParenthesis(str));
} else {
datos.push({type: 'Unknown token', content: str, remainder: ''});
}
// faltan por procesar constantes numéricas, booleanas y de cadena
// además de asociarle a los decoradores, el siguiente identificador si existe.
// asociarle los paréntesis y los corchetes al identificador anterior.,
// en los casos donde sea posible, parsear el contenido en profundidad.
str = String(datos[datos.length - 1].remainder).trim();
}
// Los decoradores deberían meterse en una lista de decoradores y no agregarse a la lista de datos, aunque sí deberían reducir str por el remainder.
// Se deben agregar al próximo elemento si no es de paréntesis, o corchetes...
// En caso de que termine el ciclo entonces, si quedaron quedaron decoradores sin asignar, es decir, sin otros objetos asociados...
// allí sí se agregan 1 x 1 y no de golpe.
// Los paréntesis siempre se agregan al elemento anterior, en la propiedad de tipo lista: parenthesis si no existe ninguno, se ponen de primeros... su contenido también puede que se parsee en profundidad.
// Los elementos que se encuentran dentro de los corchetes, también deberían parsearse en profundidad., si son complejos.
// Al igual que las directivas y prefijos de alcance, experimental, public, private, export., son condiciones lógicas., que se asocian al próximo elemento.
// Eliminar los remainders temporales, luego resolver utilizando nua variable global...
var lineCounter = 0;
while (lineCounter < datos.length) {
delete datos[lineCounter].remainder;
lineCounter++;
}
return datos;
};
// Revisar el elemento 20 subíndice 13... el objeto 3 reconoce una llava de cierre como objeto símbolo independiente... recortar ok.
// para el lunes... comentar la linea de delete remainders y ver en cual recorte falla ...
const compileScript = (parsing) => {
var lineCounter = 0;
var token;
var resultado = '';
while (lineCounter < parsing.length) {
token = parsing[lineCounter];
lineCounter++;
switch (token.type) {
case 'symbol': {
resultado += token.content;
break;
}
case 'comment': {
resultado += token.content + '\n';
break;
}
case 'decorator': {
resultado += token.content;
break;
}
case 'parenthesis': {
resultado += `(${compileScript(token.content)})\n`;
break;
}
case 'import': {
resultado += `import {${token.modules}} from ${token.path};\n`;
break;
}
case 'class': {
if (token.exported) {
resultado += `export class ${token.name} `;
} else {
resultado += `class ${token.name} `;
}
if (token.extends) {
resultado += `extends ${token.extends} `;
}
if (token.implements.length > 0) {
resultado += `implements ${token.implements.join(',')}`;
}
resultado += ' {\n'; // fix, provisional, el bloque no debería decompilar con llave de cierre.
resultado += compileScript(token.body);
resultado += '\n}';
break;
}
case 'block': {
resultado += `{${compileScript(token.body)}}`;
break;
}
case 'constructor': {
var parametros = [];
token.parameters.forEach(element => {
parametros.push(`${element.name}${element.type ? ':' + element.type : ''}`);
});
resultado += `constructor (${parametros.join(', ')}) {${compileScript(token.content)}}`;
break;
}
case 'identifier': {
if (token.content.toString().toLowerCase() === 'public' || token.content.toString().toLowerCase() === 'return') {
resultado += token.content + ' ';
} else {
resultado += token.content;
}
break;
}
default: {
resultado += token.content;
break;
}
}
// alert(JSON.stringify(resultado));
}
return resultado;
};
// Árbol de sintasis abstracta
class ES262AST {
operators = [
{name: '|', precedence: 1, func: (a, b) => a | b},
{name: '!', precedence: 1, func: (a) => !a},
{name: '&&', precedence: 2, func: (a, b) => a && b},
{name: '||', precedence: 2, func: (a, b) => a || b},
{name: 'instanceof', precedence: 3, func: (a, b) => a instanceof b},
{name: '=', precedence: 3, func: (a, b) => a = b},
{name: '===', precedence: 3, func: (a, b) => a === b},
{name: '==', precedence: 3, func: (a, b) => a == b},
{name: '!==', precedence: 3, func: (a, b) => a !== b},
{name: '<', precedence: 3, func: (a, b) => a < b},
{name: '<=', precedence: 3, func: (a, b) => a <= b},
{name: '>', precedence: 3, func: (a, b) => a > b},
{name: '>=', precedence: 3, func: (a, b) => a >= b},
{name: '+', precedence: 4, func: (a, b) => a + b},
{name: '-', precedence: 4, func: (a, b) => a - b},
{name: '*', precedence: 5, func: (a, b) => a * b},
{name: 'unary+', precedence: 5, func: (a) => -a},
{name: 'unary-', precedence: 5, func: (a) => +a},
{name: '/', precedence: 5, func: (a, b) => a / b},
{name: '%', precedence: 5, func: (a, b) => a % b},
{name: '^', precedence: 6, func: (a, b) => a ^ b},
{name: 'typeof', precedence: 7, func: (a) => typeof a},
{name: '>>>=', precedence: 7, func: (a, b) => a >>>= b},
{name: '>>>', precedence: 7, func: (a, b) => a >>> b},
{name: '>>=', precedence: 7, func: (a, b) => a >>= b},
{name: '<<=', precedence: 7, func: (a, b) => a <<= b},
{name: '++', precedence: 7, func: (a) => a++},
{name: '--', precedence: 7, func: (a) => a--},
{name: '+=', precedence: 7, func: (a, b) => a += b},
{name: '-=', precedence: 7, func: (a, b) => a -= b},
{name: '*=', precedence: 7, func: (a, b) => a *= b},
{name: '/=', precedence: 7, func: (a, b) => a /= b},
{name: '%=', precedence: 7, func: (a, b) => a %= b},
{name: '^=', precedence: 7, func: (a, b) => a ^= b},
{name: '&=', precedence: 7, func: (a, b) => a &= b},
{name: '!==', precedence: 7, func: (a, b) => a !== b},
{name: '|=', precedence: 7, func: (a, b) => a |= b},
{name: '&', precedence: 7, func: (a, b) => a & b},
{name: '~', precedence: 7},
{name: ';', precedence: 7},
{name: ',', precedence: 7},
];
constructor(expression) {
this.expression = expression;
this.tokens = this.tokenize(this.expression);
this.ast = this.construirAST(this.tokens);
}
match(str1Full, str2Part, str1InitialPosition = 0, coincidenceLen = str2Part.length) {
for (let f = 0; f < coincidenceLen - 1; f++) {
if (str1Full[str1InitialPosition + f] !== str2Part[f]) {
return false;
}
}
return true;
}
// Sintactical analizer (where the operator in position ends, else position of next char).
// No se utiliza, avanzado para el chequeo de la sintaxis en javascript... (tomar (me) la idea de las funciones de decompilación y compilación anteriores y generealiza Ecmascript-262)
sintaxCheck = (cadena, posicion) => {
let endComment;
if (
!cadena ||
cadena.length === 0 ||
posicion < 0 ||
posicion >= cadena.length
) {
return -1;
}
// pares
const pares = [
{start: '(', end: ')'},
{start: '{', end: '}'},
{start: '[', end: ']'},
];
if (cadena.substring(posicion, posicion + 2) === '//') {
// Line comment, until CR or EOF
endComment = cadena.indexOf('\n', posicion + 2);
if (endComment === -1) {
return cadena.length - 1;
}
return endComment; // hasta cr
} else if (cadena.substring(posicion, posicion + 2) === '/*') {
// Block comment, always until */, or error
endComment = cadena.indexOf('*/', posicion + 2);
return endComment !== -1 ? endComment : endComment + 2; // sino, completo.
}
// De otro modo
switch (cadena[posicion]) {
case '\'': // simples
return cadena.indexOf('\'', posicion + 1);
case '`': // francesas
return (posicion = cadena.indexOf('`', posicion + 1));
case '"': // dobles
return cadena.indexOf('"', posicion + 1);
default: {
let q;
for (let i = 0; i < pares.length; i++) {
if (cadena.substring(posicion, posicion + pares[i].start.length) === pares[i].start) {
q = posicion + pares[i].start.length; // reubica el puntero
while (q !== -1 && q < cadena.length) {
if (cadena.substring(q, q + pares[i].end.length) === pares[i].end) {
return q + pares[i].end.length - 1;
} else {
q = sintaxCheck(cadena, q);
if (q !== -1 && q < cadena.length) {
q++;
} else {
return -1;
}
}
}
return -1;
}
}
// None of them
}
}
// Sino retorna posición y ya...
return posicion;
};
tokenize(expression = this.expression) {
let tokens = [];
let currentToken = '';
// Expande el conjunto de tokens para incluir posibles palabras reservadas y símbolos unarios.
const palabrasReservadas = ['IF', 'THEN', 'ELSE']; // Ejemplo de palabras reservadas.
// Agrega métodos que verificarán si un token es palabra reservada, variable o función.
const esPalabraReservada = (token) => {
return palabrasReservadas.includes(token.toUpperCase());
};
// Si no es un operador o una función, o un espacio, digamos que es una variable
// Desde luego, si cumple las condiciones de formación
const esVariable = (token) => {
// Implementación para comprobar si el token es una variable.
let formacion = String(token).trim();
if (formacion.length === 0) return false;
if (esPalabraReservada(token)) return false;
if (this.operators.some(op => op.name === formacion)) return false;
if (((formacion[0] >= 'a' && formacion[0] <= 'z') || (formacion[0] >= 'A' && formacion[0] <= 'Z') || formacion[0] === '_' || formacion[0] === '#')) return false;
for (let k = 1; k < formacion.length; k++) {
if ((formacion[k] >= 'a' && formacion[k] <= 'z') || (formacion[0] >= 'A' && formacion[k] <= 'Z') || formacion[k] === '_' || formacion[k] === '#' || (formacion[k] >= '0' && formacion[k] <= '9')) return false;
}
return true; // bueno, debería: no le queda mas remedio
}
const esFuncion = (token) => {
// Implementación para comprobar si el token es nombre de una función.
};
for (let i = 0; i < expression.length; i++) {
let char = expression[i];
// Verificamos si el caracter es un delimitador
if (char === ' ' || char === '(' || char === ')') {
if (currentToken !== '') {
tokens.push(currentToken);
currentToken = '';
}
if (char === '(' || char === ')') {
tokens.push(char);
}
continue;
}
if ((char === '+' || char === '-') && (tokens.length === 0 ||
tokens[tokens.length - 1] === '(' || this.operators.some(op => op.name === tokens[tokens.length - 1]))) {
currentToken = (char === '+') ? 'unary+' : 'unary-'; // Corregir a 'unary-'
continue;
}
// Verificamos si un operador más largo está siendo formado (utilizar match, pero previamente ordenar descendientemente la lista de operadores y funciones...)
let longestOperator = Math.max(...this.operators.map((opname) => opname.length));
let nextFewChars = expression.substring(i, i + longestOperator).toUpperCase(); // Usamos una longitud suficiente para cubrir el operador más largo
let foundOperator = false;
for (let op of this.operators.map(op => op.name)) {
if (nextFewChars.startsWith(op)) {
if (currentToken !== '') {
tokens.push(currentToken);
currentToken = '';
}
tokens.push(op);
i += op.length - 1; // Ajustamos el índice del bucle principal
foundOperator = true;
break;
}
}
if (foundOperator) continue;
// Agrega lógica para identificar palabras reservadas, variables y funciones.
if (esPalabraReservada(currentToken)) {
tokens.push('RESERVED_' + currentToken.toUpperCase()); // Prefijo para palabras reservadas.
currentToken = '';
} else if (esVariable(currentToken)) {
tokens.push('VAR_' + currentToken); // Prefijo para variables.
currentToken = '';
} else if (esFuncion(currentToken)) {
tokens.push('FUNC_' + currentToken); // Prefijo para funciones.
currentToken = '';
}
currentToken += char;
}
if (currentToken !== '') {
if (esPalabraReservada(currentToken)) {
tokens.push('RESERVED_' + currentToken.toUpperCase());
} else if (esVariable(currentToken)) {
tokens.push('VAR_' + currentToken);
} else if (esFuncion(currentToken)) {
tokens.push('FUNC_' + currentToken);
} else {
tokens.push(currentToken);
}
}
console.log('Tokens: ', tokens);
return tokens;
}
// Para convertir una serie de tokens en un AST, debemos construir una estructura de datos que capture la jerarquía de la expresión. Aquí utilizamos nodos para representar operadores y operandos:
construirAST(tokens = this.tokens) {
const pilaNodos = [];
const pilaOperadores = [];
const obtenerPrecedencia = (token) => {
const operador = this.operators.find(op => op.name === token);
return operador ? operador.precedence : -1;
};
let astNodeEntry = (valor, hijos = []) => {
return {token: valor, childrens: hijos};
};
tokens.forEach(token => {
if (token === '(') {
pilaOperadores.push(token);
} else if (this.operators.some(op => op.name === token)) {
while (
pilaOperadores.length > 0 &&
obtenerPrecedencia(token) <= obtenerPrecedencia(pilaOperadores[pilaOperadores.length - 1])
) {
const operador = pilaOperadores.pop();
if (operador !== '!' && operador !== '(' && operador !== ')') {
const derecha = pilaNodos.pop();
const izquierda = pilaNodos.pop();
pilaNodos.push(astNodeEntry(operador, [izquierda, derecha]));
} else {
const nodo = pilaNodos.pop();
pilaNodos.push(astNodeEntry(operador, [nodo]));
}
}
pilaOperadores.push(token);
} else if (token === ')') {
while (pilaOperadores.length && pilaOperadores[pilaOperadores.length - 1] !== '(') {
const operador = pilaOperadores.pop();
if (operador !== '!' && operador !== '(' && operador !== ')') {
const derecha = pilaNodos.pop();
const izquierda = pilaNodos.pop();
pilaNodos.push(astNodeEntry(operador, [izquierda, derecha]));
} else {
const nodo = pilaNodos.pop();
pilaNodos.push(astNodeEntry(operador, [nodo]));
}
}
pilaOperadores.pop(); // Sacamos el '('
} else {
pilaNodos.push(astNodeEntry(token));
}
});
while (pilaOperadores.length) {