@designliquido/delegua 0.2.10 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. package/bin/package.json +1 -1
  2. package/fontes/ambiente.d.ts +1 -14
  3. package/fontes/ambiente.js +1 -53
  4. package/fontes/ambiente.js.map +1 -1
  5. package/fontes/avaliador-sintatico/avaliador-sintatico.js +11 -11
  6. package/fontes/avaliador-sintatico/avaliador-sintatico.js.map +1 -1
  7. package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-egua-classico.js +7 -7
  8. package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-egua-classico.js.map +1 -1
  9. package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-eguap.js +8 -8
  10. package/fontes/avaliador-sintatico/dialetos/avaliador-sintatico-eguap.js.map +1 -1
  11. package/fontes/bibliotecas/biblioteca-global.d.ts +2 -2
  12. package/fontes/bibliotecas/biblioteca-global.js +15 -15
  13. package/fontes/bibliotecas/biblioteca-global.js.map +1 -1
  14. package/fontes/construtos/atribuir.d.ts +2 -2
  15. package/fontes/construtos/atribuir.js.map +1 -1
  16. package/fontes/construtos/chamada.d.ts +2 -1
  17. package/fontes/construtos/chamada.js.map +1 -1
  18. package/fontes/construtos/literal.d.ts +2 -1
  19. package/fontes/construtos/literal.js.map +1 -1
  20. package/fontes/construtos/variavel.d.ts +2 -2
  21. package/fontes/construtos/variavel.js.map +1 -1
  22. package/fontes/declaracoes/bloco.d.ts +2 -1
  23. package/fontes/declaracoes/bloco.js.map +1 -1
  24. package/fontes/declaracoes/escreva.d.ts +2 -1
  25. package/fontes/declaracoes/escreva.js.map +1 -1
  26. package/fontes/declaracoes/expressao.d.ts +2 -1
  27. package/fontes/declaracoes/expressao.js.map +1 -1
  28. package/fontes/declaracoes/funcao.d.ts +2 -2
  29. package/fontes/declaracoes/funcao.js.map +1 -1
  30. package/fontes/declaracoes/retorna.d.ts +2 -1
  31. package/fontes/declaracoes/retorna.js.map +1 -1
  32. package/fontes/declaracoes/se.d.ts +2 -1
  33. package/fontes/declaracoes/se.js.map +1 -1
  34. package/fontes/declaracoes/var.d.ts +2 -2
  35. package/fontes/declaracoes/var.js.map +1 -1
  36. package/fontes/delegua.d.ts +3 -2
  37. package/fontes/delegua.js +20 -8
  38. package/fontes/delegua.js.map +1 -1
  39. package/fontes/estruturas/delegua-classe.d.ts +14 -0
  40. package/fontes/estruturas/{classe.js → delegua-classe.js} +4 -4
  41. package/fontes/estruturas/delegua-classe.js.map +1 -0
  42. package/fontes/estruturas/funcao-padrao.d.ts +1 -1
  43. package/fontes/estruturas/funcao-padrao.js +1 -1
  44. package/fontes/estruturas/funcao-padrao.js.map +1 -1
  45. package/fontes/estruturas/funcao.d.ts +9 -7
  46. package/fontes/estruturas/funcao.js +20 -26
  47. package/fontes/estruturas/funcao.js.map +1 -1
  48. package/fontes/estruturas/index.d.ts +2 -2
  49. package/fontes/estruturas/index.js +2 -2
  50. package/fontes/estruturas/index.js.map +1 -1
  51. package/fontes/estruturas/{instancia.d.ts → objeto-delegua-classe.d.ts} +3 -2
  52. package/fontes/estruturas/objeto-delegua-classe.js +28 -0
  53. package/fontes/estruturas/objeto-delegua-classe.js.map +1 -0
  54. package/fontes/excecoes/index.d.ts +0 -3
  55. package/fontes/excecoes/index.js +0 -3
  56. package/fontes/excecoes/index.js.map +1 -1
  57. package/fontes/interfaces/delegua-interface.d.ts +2 -2
  58. package/fontes/interfaces/escopo-execucao.d.ts +7 -0
  59. package/fontes/interfaces/escopo-execucao.js +3 -0
  60. package/fontes/interfaces/escopo-execucao.js.map +1 -0
  61. package/fontes/interfaces/index.d.ts +1 -0
  62. package/fontes/interfaces/index.js +1 -0
  63. package/fontes/interfaces/index.js.map +1 -1
  64. package/fontes/interfaces/interpretador-interface.d.ts +6 -4
  65. package/fontes/interfaces/pilha-interface.d.ts +2 -2
  66. package/fontes/interfaces/retorno-execucao-interface.d.ts +11 -0
  67. package/fontes/interfaces/retorno-execucao-interface.js +3 -0
  68. package/fontes/interfaces/retorno-execucao-interface.js.map +1 -0
  69. package/fontes/interpretador/dialetos/egua-classico.d.ts +27 -19
  70. package/fontes/interpretador/dialetos/egua-classico.js +121 -139
  71. package/fontes/interpretador/dialetos/egua-classico.js.map +1 -1
  72. package/fontes/interpretador/interpretador.d.ts +38 -18
  73. package/fontes/interpretador/interpretador.js +146 -142
  74. package/fontes/interpretador/interpretador.js.map +1 -1
  75. package/fontes/interpretador/pilha-escopos-execucao.d.ts +20 -0
  76. package/fontes/interpretador/pilha-escopos-execucao.js +74 -0
  77. package/fontes/interpretador/pilha-escopos-execucao.js.map +1 -0
  78. package/fontes/lexador/dialetos/lexador-eguap.js +1 -1
  79. package/fontes/lexador/dialetos/lexador-eguap.js.map +1 -1
  80. package/fontes/lexador/lexador.js +1 -1
  81. package/fontes/lexador/lexador.js.map +1 -1
  82. package/fontes/quebras/index.d.ts +10 -0
  83. package/fontes/quebras/index.js +51 -0
  84. package/fontes/quebras/index.js.map +1 -0
  85. package/fontes/resolvedor/index.d.ts +4 -62
  86. package/fontes/resolvedor/index.js +18 -340
  87. package/fontes/resolvedor/index.js.map +1 -1
  88. package/fontes/resolvedor/resolvedor.d.ts +64 -0
  89. package/fontes/resolvedor/resolvedor.js +345 -0
  90. package/fontes/resolvedor/resolvedor.js.map +1 -0
  91. package/package.json +1 -1
  92. package/testes/biblioteca-global.test.js +15 -29
  93. package/testes/biblioteca-global.test.js.map +1 -1
  94. package/testes/egua-classico/interpretador.test.js +21 -41
  95. package/testes/egua-classico/interpretador.test.js.map +1 -1
  96. package/testes/interpretador.test.js +21 -41
  97. package/testes/interpretador.test.js.map +1 -1
  98. package/fontes/estruturas/classe.d.ts +0 -11
  99. package/fontes/estruturas/classe.js.map +0 -1
  100. package/fontes/estruturas/instancia.js +0 -28
  101. package/fontes/estruturas/instancia.js.map +0 -1
  102. package/fontes/excecoes/excecao-continuar.d.ts +0 -2
  103. package/fontes/excecoes/excecao-continuar.js +0 -27
  104. package/fontes/excecoes/excecao-continuar.js.map +0 -1
  105. package/fontes/excecoes/excecao-retornar.d.ts +0 -4
  106. package/fontes/excecoes/excecao-retornar.js +0 -30
  107. package/fontes/excecoes/excecao-retornar.js.map +0 -1
  108. package/fontes/excecoes/excecao-sustar.d.ts +0 -2
  109. package/fontes/excecoes/excecao-sustar.js +0 -27
  110. package/fontes/excecoes/excecao-sustar.js.map +0 -1
@@ -12,22 +12,19 @@ describe('Interpretador (Égua Clássico)', function () {
12
12
  it('Trivial', function () {
13
13
  var retornoLexador = delegua.lexador.mapear(["var a = 1;"]);
14
14
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
15
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
16
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
15
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
17
16
  expect(retornoInterpretador.erros).toHaveLength(0);
18
17
  });
19
18
  it('Vetor', function () {
20
19
  var retornoLexador = delegua.lexador.mapear(["var a = [1, 2, 3];"]);
21
20
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
22
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
23
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
21
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
24
22
  expect(retornoInterpretador.erros).toHaveLength(0);
25
23
  });
26
24
  it('Dicionário', function () {
27
25
  var retornoLexador = delegua.lexador.mapear(["var a = {'a': 1, 'b': 2};"]);
28
26
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
29
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
30
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
27
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
31
28
  expect(retornoInterpretador.erros).toHaveLength(0);
32
29
  });
33
30
  });
@@ -35,15 +32,13 @@ describe('Interpretador (Égua Clássico)', function () {
35
32
  it('Acesso a elementos de vetor', function () {
36
33
  var retornoLexador = delegua.lexador.mapear(["var a = [1, 2, 3];\nescreva(a[1]);"]);
37
34
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
38
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
39
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
35
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
40
36
  expect(retornoInterpretador.erros).toHaveLength(0);
41
37
  });
42
38
  it('Acesso a elementos de dicionário', function () {
43
39
  var retornoLexador = delegua.lexador.mapear(["var a = {'a': 1, 'b': 2};\nescreva(a['b']);"]);
44
40
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
45
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
46
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
41
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
47
42
  expect(retornoInterpretador.erros).toHaveLength(0);
48
43
  });
49
44
  });
@@ -51,15 +46,13 @@ describe('Interpretador (Égua Clássico)', function () {
51
46
  it('Olá Mundo (escreva() e literal)', function () {
52
47
  var retornoLexador = delegua.lexador.mapear(["escreva('Olá mundo');"]);
53
48
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
54
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
55
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
49
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
56
50
  expect(retornoInterpretador.erros).toHaveLength(0);
57
51
  });
58
52
  it('nulo', function () {
59
53
  var retornoLexador = delegua.lexador.mapear(["escreva(nulo);"]);
60
54
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
61
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
62
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
55
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
63
56
  expect(retornoInterpretador.erros).toHaveLength(0);
64
57
  });
65
58
  });
@@ -67,8 +60,7 @@ describe('Interpretador (Égua Clássico)', function () {
67
60
  it('Operações matemáticas - Trivial', function () {
68
61
  var retornoLexador = delegua.lexador.mapear(["escreva(5 + 4 * 3 - 2 ** 1 / 6 % 10);"]);
69
62
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
70
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
71
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
63
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
72
64
  expect(retornoInterpretador.erros).toHaveLength(0);
73
65
  });
74
66
  });
@@ -76,22 +68,19 @@ describe('Interpretador (Égua Clássico)', function () {
76
68
  it('Operações lógicas - ou', function () {
77
69
  var retornoLexador = delegua.lexador.mapear(["escreva(verdadeiro ou falso);"]);
78
70
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
79
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
80
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
71
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
81
72
  expect(retornoInterpretador.erros).toHaveLength(0);
82
73
  });
83
74
  it('Operações lógicas - e', function () {
84
75
  var retornoLexador = delegua.lexador.mapear(["escreva(verdadeiro e falso);"]);
85
76
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
86
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
87
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
77
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
88
78
  expect(retornoInterpretador.erros).toHaveLength(0);
89
79
  });
90
80
  it('Operações lógicas - em', function () {
91
81
  var retornoLexador = delegua.lexador.mapear(["escreva(2 em [1, 2, 3]);"]);
92
82
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
93
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
94
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
83
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
95
84
  expect(retornoInterpretador.erros).toHaveLength(0);
96
85
  });
97
86
  });
@@ -99,15 +88,13 @@ describe('Interpretador (Égua Clássico)', function () {
99
88
  it('Condicionais - condição verdadeira', function () {
100
89
  var retornoLexador = delegua.lexador.mapear(["se (1 < 2) { escreva('Um menor que dois'); } senão { escreva('Nunca será executado'); }"]);
101
90
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
102
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
103
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
91
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
104
92
  expect(retornoInterpretador.erros).toHaveLength(0);
105
93
  });
106
94
  it('Condicionais - condição falsa', function () {
107
95
  var retornoLexador = delegua.lexador.mapear(["se (1 > 2) { escreva('Nunca acontece'); } senão { escreva('Um não é maior que dois'); }"]);
108
96
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
109
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
110
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
97
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
111
98
  expect(retornoInterpretador.erros).toHaveLength(0);
112
99
  });
113
100
  });
@@ -115,22 +102,19 @@ describe('Interpretador (Égua Clássico)', function () {
115
102
  it('Laços de repetição - enquanto', function () {
116
103
  var retornoLexador = delegua.lexador.mapear(["var a = 0;\nenquanto (a < 10) { a = a + 1; }"]);
117
104
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
118
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
119
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
105
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
120
106
  expect(retornoInterpretador.erros).toHaveLength(0);
121
107
  });
122
108
  it('Laços de repetição - fazer ... enquanto', function () {
123
109
  var retornoLexador = delegua.lexador.mapear(["var a = 0;\nfazer { a = a + 1; } enquanto (a < 10)"]);
124
110
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
125
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
126
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
111
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
127
112
  expect(retornoInterpretador.erros).toHaveLength(0);
128
113
  });
129
114
  it('Laços de repetição - para', function () {
130
115
  var retornoLexador = delegua.lexador.mapear(["para (var i = 0; i < 10; i = i + 1) { escreva(i); }"]);
131
116
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
132
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
133
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
117
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
134
118
  expect(retornoInterpretador.erros).toHaveLength(0);
135
119
  });
136
120
  });
@@ -154,13 +138,12 @@ describe('Interpretador (Égua Clássico)', function () {
154
138
  ];
155
139
  var retornoLexador = delegua.lexador.mapear(codigo);
156
140
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
157
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
158
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
141
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
159
142
  expect(retornoInterpretador.erros).toHaveLength(0);
160
143
  });
161
144
  });
162
145
  describe('Declaração e chamada de funções', function () {
163
- it('Fibonacci', function () {
146
+ it.skip('Fibonacci', function () {
164
147
  var codigo = [
165
148
  "função fibonacci(n) {",
166
149
  " se (n == 0) {",
@@ -190,8 +173,7 @@ describe('Interpretador (Égua Clássico)', function () {
190
173
  ];
191
174
  var retornoLexador = delegua.lexador.mapear(codigo);
192
175
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
193
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
194
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
176
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
195
177
  expect(retornoInterpretador.erros).toHaveLength(0);
196
178
  });
197
179
  });
@@ -201,15 +183,13 @@ describe('Interpretador (Égua Clássico)', function () {
201
183
  it('Acesso a elementos de vetor', function () {
202
184
  var retornoLexador = delegua.lexador.mapear(["var a = [1, 2, 3];\nescreva(a[4]);"]);
203
185
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
204
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
205
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
186
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
206
187
  expect(retornoInterpretador.erros.length).toBeGreaterThan(0);
207
188
  });
208
189
  it('Acesso a elementos de dicionário', function () {
209
190
  var retornoLexador = delegua.lexador.mapear(["var a = {'a': 1, 'b': 2};\nescreva(a['c']);"]);
210
191
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
211
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
212
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
192
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
213
193
  expect(retornoInterpretador.erros.length).toBeGreaterThanOrEqual(0);
214
194
  });
215
195
  });
@@ -1 +1 @@
1
- {"version":3,"file":"interpretador.test.js","sourceRoot":"","sources":["../../../testes/egua-classico/interpretador.test.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"interpretador.test.js","sourceRoot":"","sources":["../../../testes/egua-classico/interpretador.test.ts"],"names":[],"mappings":"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"}
@@ -12,22 +12,19 @@ describe('Interpretador', function () {
12
12
  it('Trivial', function () {
13
13
  var retornoLexador = delegua.lexador.mapear(["var a = 1"]);
14
14
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
15
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
16
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
15
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
17
16
  expect(retornoInterpretador.erros).toHaveLength(0);
18
17
  });
19
18
  it('Vetor', function () {
20
19
  var retornoLexador = delegua.lexador.mapear(["var a = [1, 2, 3]"]);
21
20
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
22
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
23
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
21
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
24
22
  expect(retornoInterpretador.erros).toHaveLength(0);
25
23
  });
26
24
  it('Dicionário', function () {
27
25
  var retornoLexador = delegua.lexador.mapear(["var a = {'a': 1, 'b': 2}"]);
28
26
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
29
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
30
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
27
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
31
28
  expect(retornoInterpretador.erros).toHaveLength(0);
32
29
  });
33
30
  });
@@ -38,8 +35,7 @@ describe('Interpretador', function () {
38
35
  "escreva(a[1])"
39
36
  ]);
40
37
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
41
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
42
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
38
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
43
39
  expect(retornoInterpretador.erros).toHaveLength(0);
44
40
  });
45
41
  it('Acesso a elementos de dicionário', function () {
@@ -48,8 +44,7 @@ describe('Interpretador', function () {
48
44
  "escreva(a['b'])"
49
45
  ]);
50
46
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
51
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
52
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
47
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
53
48
  expect(retornoInterpretador.erros).toHaveLength(0);
54
49
  });
55
50
  });
@@ -57,15 +52,13 @@ describe('Interpretador', function () {
57
52
  it('Olá Mundo (escreva() e literal)', function () {
58
53
  var retornoLexador = delegua.lexador.mapear(["escreva('Olá mundo')"]);
59
54
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
60
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
61
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
55
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
62
56
  expect(retornoInterpretador.erros).toHaveLength(0);
63
57
  });
64
58
  it('nulo', function () {
65
59
  var retornoLexador = delegua.lexador.mapear(["escreva(nulo)"]);
66
60
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
67
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
68
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
61
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
69
62
  expect(retornoInterpretador.erros).toHaveLength(0);
70
63
  });
71
64
  });
@@ -73,8 +66,7 @@ describe('Interpretador', function () {
73
66
  it('Operações matemáticas - Trivial', function () {
74
67
  var retornoLexador = delegua.lexador.mapear(["escreva(5 + 4 * 3 - 2 ** 1 / 6 % 10)"]);
75
68
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
76
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
77
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
69
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
78
70
  expect(retornoInterpretador.erros).toHaveLength(0);
79
71
  });
80
72
  });
@@ -82,22 +74,19 @@ describe('Interpretador', function () {
82
74
  it('Operações lógicas - ou', function () {
83
75
  var retornoLexador = delegua.lexador.mapear(["escreva(verdadeiro ou falso)"]);
84
76
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
85
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
86
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
77
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
87
78
  expect(retornoInterpretador.erros).toHaveLength(0);
88
79
  });
89
80
  it('Operações lógicas - e', function () {
90
81
  var retornoLexador = delegua.lexador.mapear(["escreva(verdadeiro e falso)"]);
91
82
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
92
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
93
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
83
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
94
84
  expect(retornoInterpretador.erros).toHaveLength(0);
95
85
  });
96
86
  it('Operações lógicas - em', function () {
97
87
  var retornoLexador = delegua.lexador.mapear(["escreva(2 em [1, 2, 3])"]);
98
88
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
99
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
100
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
89
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
101
90
  expect(retornoInterpretador.erros).toHaveLength(0);
102
91
  });
103
92
  });
@@ -105,15 +94,13 @@ describe('Interpretador', function () {
105
94
  it('Condicionais - condição verdadeira', function () {
106
95
  var retornoLexador = delegua.lexador.mapear(["se (1 < 2) { escreva('Um menor que dois') } senão { escreva('Nunca será executado') }"]);
107
96
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
108
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
109
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
97
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
110
98
  expect(retornoInterpretador.erros).toHaveLength(0);
111
99
  });
112
100
  it('Condicionais - condição falsa', function () {
113
101
  var retornoLexador = delegua.lexador.mapear(["se (1 > 2) { escreva('Nunca acontece') } senão { escreva('Um não é maior que dois') }"]);
114
102
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
115
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
116
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
103
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
117
104
  expect(retornoInterpretador.erros).toHaveLength(0);
118
105
  });
119
106
  });
@@ -121,8 +108,7 @@ describe('Interpretador', function () {
121
108
  it('Laços de repetição - enquanto', function () {
122
109
  var retornoLexador = delegua.lexador.mapear(["var a = 0;\nenquanto (a < 10) { a = a + 1 }"]);
123
110
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
124
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
125
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
111
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
126
112
  expect(retornoInterpretador.erros).toHaveLength(0);
127
113
  });
128
114
  it('Laços de repetição - fazer ... enquanto', function () {
@@ -131,15 +117,13 @@ describe('Interpretador', function () {
131
117
  "fazer { a = a + 1 } enquanto (a < 10)"
132
118
  ]);
133
119
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
134
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
135
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
120
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
136
121
  expect(retornoInterpretador.erros).toHaveLength(0);
137
122
  });
138
123
  it('Laços de repetição - para', function () {
139
124
  var retornoLexador = delegua.lexador.mapear(["para (var i = 0; i < 10; i = i + 1) { escreva(i) }"]);
140
125
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
141
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
142
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
126
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
143
127
  expect(retornoInterpretador.erros).toHaveLength(0);
144
128
  });
145
129
  });
@@ -163,12 +147,11 @@ describe('Interpretador', function () {
163
147
  ];
164
148
  var retornoLexador = delegua.lexador.mapear(codigo);
165
149
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
166
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
167
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
150
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
168
151
  expect(retornoInterpretador.erros).toHaveLength(0);
169
152
  });
170
153
  });
171
- describe('Declaração e chamada de funções', function () {
154
+ describe.skip('Declaração e chamada de funções', function () {
172
155
  it('Fibonacci', function () {
173
156
  var codigo = [
174
157
  "funcao fibonacci(n) {",
@@ -199,8 +182,7 @@ describe('Interpretador', function () {
199
182
  ];
200
183
  var retornoLexador = delegua.lexador.mapear(codigo);
201
184
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
202
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
203
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
185
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
204
186
  expect(retornoInterpretador.erros).toHaveLength(0);
205
187
  });
206
188
  });
@@ -213,8 +195,7 @@ describe('Interpretador', function () {
213
195
  "escreva(a[4]);"
214
196
  ]);
215
197
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
216
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
217
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
198
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
218
199
  expect(retornoInterpretador.erros.length).toBeGreaterThan(0);
219
200
  });
220
201
  it('Acesso a elementos de dicionário', function () {
@@ -223,8 +204,7 @@ describe('Interpretador', function () {
223
204
  "escreva(a['c']);"
224
205
  ]);
225
206
  var retornoAvaliadorSintatico = delegua.avaliadorSintatico.analisar(retornoLexador);
226
- var retornoResolvedor = delegua.resolvedor.resolver(retornoAvaliadorSintatico.declaracoes);
227
- var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes, retornoResolvedor.locais);
207
+ var retornoInterpretador = delegua.interpretador.interpretar(retornoAvaliadorSintatico.declaracoes);
228
208
  expect(retornoInterpretador.erros.length).toBeGreaterThanOrEqual(0);
229
209
  });
230
210
  });
@@ -1 +1 @@
1
- {"version":3,"file":"interpretador.test.js","sourceRoot":"","sources":["../../testes/interpretador.test.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"interpretador.test.js","sourceRoot":"","sources":["../../testes/interpretador.test.ts"],"names":[],"mappings":"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"}
@@ -1,11 +0,0 @@
1
- import { Chamavel } from "./chamavel";
2
- export declare class DeleguaClasse extends Chamavel {
3
- nome: any;
4
- superClasse: any;
5
- metodos: any;
6
- constructor(nome?: any, superClasse?: any, metodos?: any);
7
- encontrarMetodo(nome: any): any;
8
- paraTexto(): string;
9
- aridade(): any;
10
- chamar(interpretador: any, argumentos: any): any;
11
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"classe.js","sourceRoot":"","sources":["../../../fontes/estruturas/classe.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,uCAAsC;AACtC,yCAA+C;AAE/C;IAAmC,iCAAQ;IAKvC,uBAAY,IAAU,EAAE,WAAiB,EAAE,OAAa;QAAxD,YACI,iBAAO,SAIV;QAHG,KAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,KAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC;;IAC3B,CAAC;IAED,uCAAe,GAAf,UAAgB,IAAS;QACrB,IAAI,IAAI,CAAC,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC,EAAE;YACnC,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;SAC7B;QAED,IAAI,IAAI,CAAC,WAAW,KAAK,IAAI,EAAE;YAC3B,OAAO,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,IAAI,CAAC,CAAC;SACjD;QAED,OAAO,SAAS,CAAC;IACrB,CAAC;IAED,iCAAS,GAAT;QACI,OAAO,kBAAW,IAAI,CAAC,IAAI,MAAG,CAAC;IACnC,CAAC;IAED,+BAAO,GAAP;QACI,IAAI,aAAa,GAAG,IAAI,CAAC,eAAe,CAAC,YAAY,CAAC,CAAC;QACvD,OAAO,aAAa,CAAC,CAAC,CAAC,aAAa,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC;IACvD,CAAC;IAED,8BAAM,GAAN,UAAO,aAAkB,EAAE,UAAe;QACtC,IAAI,SAAS,GAAG,IAAI,4BAAgB,CAAC,IAAI,CAAC,CAAC;QAE3C,IAAI,aAAa,GAAG,IAAI,CAAC,eAAe,CAAC,YAAY,CAAC,CAAC;QACvD,IAAI,aAAa,EAAE;YACf,aAAa,CAAC,aAAa,CAAC,SAAS,CAAC,CAAC,MAAM,CAAC,aAAa,EAAE,UAAU,CAAC,CAAC;SAC5E;QAED,OAAO,SAAS,CAAC;IACrB,CAAC;IACL,oBAAC;AAAD,CAAC,AA3CD,CAAmC,mBAAQ,GA2C1C;AA3CY,sCAAa"}
@@ -1,28 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleguaInstancia = void 0;
4
- var excecoes_1 = require("../excecoes");
5
- var DeleguaInstancia = /** @class */ (function () {
6
- function DeleguaInstancia(criarClasse) {
7
- this.criarClasse = criarClasse;
8
- this.campos = {};
9
- }
10
- DeleguaInstancia.prototype.get = function (simbolo) {
11
- if (this.campos.hasOwnProperty(simbolo.lexema)) {
12
- return this.campos[simbolo.lexema];
13
- }
14
- var metodo = this.criarClasse.encontrarMetodo(simbolo.lexema);
15
- if (metodo)
16
- return metodo.definirEscopo(this);
17
- throw new excecoes_1.ErroEmTempoDeExecucao(simbolo, "Método indefinido não recuperado.");
18
- };
19
- DeleguaInstancia.prototype.set = function (simbolo, valor) {
20
- this.campos[simbolo.lexema] = valor;
21
- };
22
- DeleguaInstancia.prototype.toString = function () {
23
- return "<Objeto " + this.criarClasse.nome + ">";
24
- };
25
- return DeleguaInstancia;
26
- }());
27
- exports.DeleguaInstancia = DeleguaInstancia;
28
- //# sourceMappingURL=instancia.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"instancia.js","sourceRoot":"","sources":["../../../fontes/estruturas/instancia.ts"],"names":[],"mappings":";;;AAAA,wCAAoD;AAGpD;IAII,0BAAY,WAAgB;QACxB,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,MAAM,GAAG,EAAE,CAAC;IACrB,CAAC;IAED,8BAAG,GAAH,UAAI,OAAyB;QACzB,IAAI,IAAI,CAAC,MAAM,CAAC,cAAc,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;YAC5C,OAAO,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;SACtC;QAED,IAAI,MAAM,GAAG,IAAI,CAAC,WAAW,CAAC,eAAe,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;QAC9D,IAAI,MAAM;YAAE,OAAO,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,CAAC;QAE9C,MAAM,IAAI,gCAAqB,CAAC,OAAO,EAAE,mCAAmC,CAAC,CAAC;IAClF,CAAC;IAED,8BAAG,GAAH,UAAI,OAAyB,EAAE,KAAU;QACrC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC;IACxC,CAAC;IAED,mCAAQ,GAAR;QACI,OAAO,UAAU,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,GAAG,GAAG,CAAC;IACpD,CAAC;IACL,uBAAC;AAAD,CAAC,AA3BD,IA2BC;AA3BY,4CAAgB"}
@@ -1,2 +0,0 @@
1
- export declare class ExcecaoContinuar extends Error {
2
- }
@@ -1,27 +0,0 @@
1
- "use strict";
2
- var __extends = (this && this.__extends) || (function () {
3
- var extendStatics = function (d, b) {
4
- extendStatics = Object.setPrototypeOf ||
5
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
- return extendStatics(d, b);
8
- };
9
- return function (d, b) {
10
- if (typeof b !== "function" && b !== null)
11
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
- extendStatics(d, b);
13
- function __() { this.constructor = d; }
14
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
- };
16
- })();
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.ExcecaoContinuar = void 0;
19
- var ExcecaoContinuar = /** @class */ (function (_super) {
20
- __extends(ExcecaoContinuar, _super);
21
- function ExcecaoContinuar() {
22
- return _super !== null && _super.apply(this, arguments) || this;
23
- }
24
- return ExcecaoContinuar;
25
- }(Error));
26
- exports.ExcecaoContinuar = ExcecaoContinuar;
27
- //# sourceMappingURL=excecao-continuar.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"excecao-continuar.js","sourceRoot":"","sources":["../../../fontes/excecoes/excecao-continuar.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA;IAAsC,oCAAK;IAA3C;;IAA8C,CAAC;IAAD,uBAAC;AAAD,CAAC,AAA/C,CAAsC,KAAK,GAAI;AAAlC,4CAAgB"}
@@ -1,4 +0,0 @@
1
- export declare class ExcecaoRetornar extends Error {
2
- valor: any;
3
- constructor(valor: any);
4
- }
@@ -1,30 +0,0 @@
1
- "use strict";
2
- var __extends = (this && this.__extends) || (function () {
3
- var extendStatics = function (d, b) {
4
- extendStatics = Object.setPrototypeOf ||
5
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
- function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
7
- return extendStatics(d, b);
8
- };
9
- return function (d, b) {
10
- if (typeof b !== "function" && b !== null)
11
- throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
12
- extendStatics(d, b);
13
- function __() { this.constructor = d; }
14
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
15
- };
16
- })();
17
- Object.defineProperty(exports, "__esModule", { value: true });
18
- exports.ExcecaoRetornar = void 0;
19
- var ExcecaoRetornar = /** @class */ (function (_super) {
20
- __extends(ExcecaoRetornar, _super);
21
- function ExcecaoRetornar(valor) {
22
- var _this = _super.call(this, valor) || this;
23
- _this.valor = valor;
24
- Object.setPrototypeOf(_this, ExcecaoRetornar.prototype);
25
- return _this;
26
- }
27
- return ExcecaoRetornar;
28
- }(Error));
29
- exports.ExcecaoRetornar = ExcecaoRetornar;
30
- //# sourceMappingURL=excecao-retornar.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"excecao-retornar.js","sourceRoot":"","sources":["../../../fontes/excecoes/excecao-retornar.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA;IAAqC,mCAAK;IAGtC,yBAAY,KAAU;QAAtB,YACI,kBAAM,KAAK,CAAC,SAGf;QAFG,KAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,MAAM,CAAC,cAAc,CAAC,KAAI,EAAE,eAAe,CAAC,SAAS,CAAC,CAAC;;IAC3D,CAAC;IACL,sBAAC;AAAD,CAAC,AARD,CAAqC,KAAK,GAQzC;AARY,0CAAe"}
@@ -1,2 +0,0 @@
1
- export declare class ExcecaoSustar extends Error {
2
- }