@designliquido/potigol 0.1.3 → 0.1.5

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 (84) hide show
  1. package/analisador-semantico/analisador-semantico-potigol.d.ts +24 -0
  2. package/analisador-semantico/analisador-semantico-potigol.d.ts.map +1 -0
  3. package/analisador-semantico/analisador-semantico-potigol.js +26 -0
  4. package/analisador-semantico/analisador-semantico-potigol.js.map +1 -0
  5. package/analisador-semantico/index.d.ts +1 -0
  6. package/analisador-semantico/index.d.ts.map +1 -0
  7. package/analisador-semantico/index.js +1 -0
  8. package/analisador-semantico/index.js.map +1 -0
  9. package/avaliador-sintatico/avaliador-sintatico-potigol.d.ts +22 -6
  10. package/avaliador-sintatico/avaliador-sintatico-potigol.d.ts.map +1 -1
  11. package/avaliador-sintatico/avaliador-sintatico-potigol.js +114 -32
  12. package/avaliador-sintatico/avaliador-sintatico-potigol.js.map +1 -1
  13. package/avaliador-sintatico/micro-avaliador-sintatico-potigol.d.ts.map +1 -1
  14. package/avaliador-sintatico/micro-avaliador-sintatico-potigol.js +2 -2
  15. package/avaliador-sintatico/micro-avaliador-sintatico-potigol.js.map +1 -1
  16. package/avaliador-sintatico/pilha-escopos-variaveis-conhecidas.d.ts +11 -0
  17. package/avaliador-sintatico/pilha-escopos-variaveis-conhecidas.d.ts.map +1 -0
  18. package/avaliador-sintatico/pilha-escopos-variaveis-conhecidas.js +34 -0
  19. package/avaliador-sintatico/pilha-escopos-variaveis-conhecidas.js.map +1 -0
  20. package/bibliotecas/biblioteca-global.d.ts +11 -11
  21. package/construtos/constante-ou-variavel.d.ts +20 -0
  22. package/construtos/constante-ou-variavel.d.ts.map +1 -0
  23. package/construtos/constante-ou-variavel.js +26 -0
  24. package/construtos/constante-ou-variavel.js.map +1 -0
  25. package/construtos/index.d.ts +2 -0
  26. package/construtos/index.d.ts.map +1 -0
  27. package/construtos/index.js +18 -0
  28. package/construtos/index.js.map +1 -0
  29. package/declaracoes/index.d.ts +2 -0
  30. package/declaracoes/index.d.ts.map +1 -0
  31. package/declaracoes/index.js +18 -0
  32. package/declaracoes/index.js.map +1 -0
  33. package/declaracoes/reatribuicao-variavel.d.ts +18 -0
  34. package/declaracoes/reatribuicao-variavel.d.ts.map +1 -0
  35. package/declaracoes/reatribuicao-variavel.js +22 -0
  36. package/declaracoes/reatribuicao-variavel.js.map +1 -0
  37. package/estruturas/potigol-funcao.d.ts +4 -0
  38. package/estruturas/potigol-funcao.d.ts.map +1 -0
  39. package/estruturas/potigol-funcao.js +8 -0
  40. package/estruturas/potigol-funcao.js.map +1 -0
  41. package/formatador/formatador-potigol.d.ts +26 -23
  42. package/formatador/formatador-potigol.d.ts.map +1 -1
  43. package/formatador/formatador-potigol.js +76 -33
  44. package/formatador/formatador-potigol.js.map +1 -1
  45. package/interfaces/index.d.ts +2 -1
  46. package/interfaces/index.d.ts.map +1 -1
  47. package/interfaces/index.js +2 -1
  48. package/interfaces/index.js.map +1 -1
  49. package/interfaces/interpretador-potigol-interface.d.ts +14 -0
  50. package/interfaces/interpretador-potigol-interface.d.ts.map +1 -0
  51. package/interfaces/{interpretador-interface-potigol.js → interpretador-potigol-interface.js} +1 -1
  52. package/interfaces/interpretador-potigol-interface.js.map +1 -0
  53. package/interfaces/visitante-comum-potigol-interface.d.ts +8 -0
  54. package/interfaces/visitante-comum-potigol-interface.d.ts.map +1 -0
  55. package/interfaces/visitante-comum-potigol-interface.js +3 -0
  56. package/interfaces/visitante-comum-potigol-interface.js.map +1 -0
  57. package/interpretador/comum.d.ts +10 -7
  58. package/interpretador/comum.d.ts.map +1 -1
  59. package/interpretador/comum.js +75 -2
  60. package/interpretador/comum.js.map +1 -1
  61. package/interpretador/interpretador-potigol-com-depuracao.d.ts +5 -1
  62. package/interpretador/interpretador-potigol-com-depuracao.d.ts.map +1 -1
  63. package/interpretador/interpretador-potigol-com-depuracao.js +6 -0
  64. package/interpretador/interpretador-potigol-com-depuracao.js.map +1 -1
  65. package/interpretador/interpretador-potigol.d.ts +7 -4
  66. package/interpretador/interpretador-potigol.d.ts.map +1 -1
  67. package/interpretador/interpretador-potigol.js +8 -2
  68. package/interpretador/interpretador-potigol.js.map +1 -1
  69. package/lexador/lexador-potigol.d.ts +1 -1
  70. package/lexador/lexador-potigol.d.ts.map +1 -1
  71. package/lexador/lexador-potigol.js +3 -3
  72. package/lexador/lexador-potigol.js.map +1 -1
  73. package/lexador/micro-lexador-potigol.d.ts +2 -1
  74. package/lexador/micro-lexador-potigol.d.ts.map +1 -1
  75. package/lexador/micro-lexador-potigol.js +2 -2
  76. package/lexador/micro-lexador-potigol.js.map +1 -1
  77. package/package.json +2 -2
  78. package/tipos-de-simbolos/lexico-regular.d.ts +1 -0
  79. package/tipos-de-simbolos/lexico-regular.d.ts.map +1 -1
  80. package/tipos-de-simbolos/lexico-regular.js +1 -0
  81. package/tipos-de-simbolos/lexico-regular.js.map +1 -1
  82. package/interfaces/interpretador-interface-potigol.d.ts +0 -6
  83. package/interfaces/interpretador-interface-potigol.d.ts.map +0 -1
  84. package/interfaces/interpretador-interface-potigol.js.map +0 -1
@@ -0,0 +1,11 @@
1
+ import { PilhaInterface } from "@designliquido/delegua/interfaces";
2
+ export declare class PilhaEscoposVariaveisConhecidas implements PilhaInterface<string[]> {
3
+ pilha: string[][];
4
+ constructor();
5
+ empilhar(item: string[]): void;
6
+ eVazio(): boolean;
7
+ topoDaPilha(): string[];
8
+ removerUltimo(): string[];
9
+ variavelExiste(nome: string): boolean;
10
+ }
11
+ //# sourceMappingURL=pilha-escopos-variaveis-conhecidas.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pilha-escopos-variaveis-conhecidas.d.ts","sourceRoot":"","sources":["../../fontes/avaliador-sintatico/pilha-escopos-variaveis-conhecidas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AAEnE,qBAAa,+BAAgC,YAAW,cAAc,CAAC,MAAM,EAAE,CAAC;IAC5E,KAAK,EAAE,MAAM,EAAE,EAAE,CAAC;;IAMlB,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,IAAI;IAI9B,MAAM,IAAI,OAAO;IAIjB,WAAW,IAAI,MAAM,EAAE;IAKvB,aAAa,IAAI,MAAM,EAAE;IAKzB,cAAc,CAAC,IAAI,EAAE,MAAM;CAS9B"}
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PilhaEscoposVariaveisConhecidas = void 0;
4
+ class PilhaEscoposVariaveisConhecidas {
5
+ constructor() {
6
+ this.pilha = [];
7
+ }
8
+ empilhar(item) {
9
+ this.pilha.push(item);
10
+ }
11
+ eVazio() {
12
+ return this.pilha.length === 0;
13
+ }
14
+ topoDaPilha() {
15
+ if (this.eVazio())
16
+ throw new Error('Pilha vazia.');
17
+ return this.pilha[this.pilha.length - 1];
18
+ }
19
+ removerUltimo() {
20
+ if (this.eVazio())
21
+ throw new Error('Pilha vazia.');
22
+ return this.pilha.pop();
23
+ }
24
+ variavelExiste(nome) {
25
+ for (let i = 0; i < this.pilha.length; i++) {
26
+ if (this.pilha[i].includes(nome)) {
27
+ return true;
28
+ }
29
+ }
30
+ return false;
31
+ }
32
+ }
33
+ exports.PilhaEscoposVariaveisConhecidas = PilhaEscoposVariaveisConhecidas;
34
+ //# sourceMappingURL=pilha-escopos-variaveis-conhecidas.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"pilha-escopos-variaveis-conhecidas.js","sourceRoot":"","sources":["../../fontes/avaliador-sintatico/pilha-escopos-variaveis-conhecidas.ts"],"names":[],"mappings":";;;AAEA,MAAa,+BAA+B;IAGxC;QACI,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC;IACpB,CAAC;IAED,QAAQ,CAAC,IAAc;QACnB,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC1B,CAAC;IAED,MAAM;QACF,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,KAAK,CAAC,CAAC;IACnC,CAAC;IAED,WAAW;QACP,IAAI,IAAI,CAAC,MAAM,EAAE;YAAE,MAAM,IAAI,KAAK,CAAC,cAAc,CAAC,CAAC;QACnD,OAAO,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;IAC7C,CAAC;IAED,aAAa;QACT,IAAI,IAAI,CAAC,MAAM,EAAE;YAAE,MAAM,IAAI,KAAK,CAAC,cAAc,CAAC,CAAC;QACnD,OAAO,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC;IAC5B,CAAC;IAED,cAAc,CAAC,IAAY;QACvB,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;YACzC,IAAI,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;gBAC/B,OAAO,IAAI,CAAC;YAChB,CAAC;QACL,CAAC;QAED,OAAO,KAAK,CAAC;IACjB,CAAC;CACJ;AAlCD,0EAkCC"}
@@ -1,14 +1,14 @@
1
- import { InterpretadorInterfacePotigol } from '../interfaces';
2
- export declare function abs(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
1
+ import { InterpretadorPotigolInterface } from '../interfaces';
2
+ export declare function abs(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
3
3
  export declare function aleatorio(): Promise<number>;
4
- export declare function arccos(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
5
- export declare function arcsen(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
6
- export declare function arctg(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
7
- export declare function cos(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
8
- export declare function log(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
9
- export declare function log10(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
4
+ export declare function arccos(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
5
+ export declare function arcsen(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
6
+ export declare function arctg(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
7
+ export declare function cos(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
8
+ export declare function log(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
9
+ export declare function log10(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
10
10
  export declare function pi(): Promise<number>;
11
- export declare function raiz(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
12
- export declare function sen(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
13
- export declare function tg(interpretador: InterpretadorInterfacePotigol, valor: number): Promise<number>;
11
+ export declare function raiz(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
12
+ export declare function sen(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
13
+ export declare function tg(interpretador: InterpretadorPotigolInterface, valor: number): Promise<number>;
14
14
  //# sourceMappingURL=biblioteca-global.d.ts.map
@@ -0,0 +1,20 @@
1
+ import { Construto } from '@designliquido/delegua/construtos';
2
+ import { SimboloInterface, VariavelInterface, VisitanteComumInterface } from '@designliquido/delegua/interfaces';
3
+ /**
4
+ * Este construto existe para alguns dialetos, como Potigol, onde
5
+ * não é possível definir se um construto é constante, variável,
6
+ * identificador de função, tipo ou classe no momento da avaliação
7
+ * primária.
8
+ *
9
+ * Durante o restante da avaliação sintática, esse construto deve **obrigatoriamente**
10
+ * resolver para `Constante`, `Variavel` ou algum construto de chamada/declaração de
11
+ * função.
12
+ */
13
+ export declare class ConstanteOuVariavel<TTipoSimbolo extends string = string> implements Construto {
14
+ linha: number;
15
+ hashArquivo: number;
16
+ simbolo: SimboloInterface<TTipoSimbolo>;
17
+ constructor(hashArquivo: number, simbolo: SimboloInterface<TTipoSimbolo>);
18
+ aceitar(visitante: VisitanteComumInterface): Promise<VariavelInterface>;
19
+ }
20
+ //# sourceMappingURL=constante-ou-variavel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constante-ou-variavel.d.ts","sourceRoot":"","sources":["../../fontes/construtos/constante-ou-variavel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mCAAmC,CAAC;AAC9D,OAAO,EAAE,gBAAgB,EAAE,iBAAiB,EAAE,uBAAuB,EAAE,MAAM,mCAAmC,CAAC;AAEjH;;;;;;;;;GASG;AACH,qBAAa,mBAAmB,CAAC,YAAY,SAAS,MAAM,GAAG,MAAM,CAAE,YAAW,SAAS;IACvF,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IAEpB,OAAO,EAAE,gBAAgB,CAAC,YAAY,CAAC,CAAC;gBAGpC,WAAW,EAAE,MAAM,EACnB,OAAO,EAAE,gBAAgB,CAAC,YAAY,CAAC;IAQrC,OAAO,CAAC,SAAS,EAAE,uBAAuB,GAAG,OAAO,CAAC,iBAAiB,CAAC;CAQhF"}
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ConstanteOuVariavel = void 0;
4
+ /**
5
+ * Este construto existe para alguns dialetos, como Potigol, onde
6
+ * não é possível definir se um construto é constante, variável,
7
+ * identificador de função, tipo ou classe no momento da avaliação
8
+ * primária.
9
+ *
10
+ * Durante o restante da avaliação sintática, esse construto deve **obrigatoriamente**
11
+ * resolver para `Constante`, `Variavel` ou algum construto de chamada/declaração de
12
+ * função.
13
+ */
14
+ class ConstanteOuVariavel {
15
+ constructor(hashArquivo, simbolo) {
16
+ this.linha = Number(simbolo.linha);
17
+ this.hashArquivo = hashArquivo;
18
+ this.simbolo = simbolo;
19
+ }
20
+ async aceitar(visitante) {
21
+ return Promise.reject(new Error('Este método não deveria ser chamado. ' +
22
+ 'O construto deve resolver como constante ou variável ainda na avaliação sintática.'));
23
+ }
24
+ }
25
+ exports.ConstanteOuVariavel = ConstanteOuVariavel;
26
+ //# sourceMappingURL=constante-ou-variavel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constante-ou-variavel.js","sourceRoot":"","sources":["../../fontes/construtos/constante-ou-variavel.ts"],"names":[],"mappings":";;;AAGA;;;;;;;;;GASG;AACH,MAAa,mBAAmB;IAM5B,YACI,WAAmB,EACnB,OAAuC;QAEvC,IAAI,CAAC,KAAK,GAAG,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC;QACnC,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAE/B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IAC3B,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,SAAkC;QAC5C,OAAO,OAAO,CAAC,MAAM,CACjB,IAAI,KAAK,CACL,uCAAuC;YACnC,oFAAoF,CAC3F,CACJ,CAAC;IACN,CAAC;CACJ;AAxBD,kDAwBC"}
@@ -0,0 +1,2 @@
1
+ export * from './constante-ou-variavel';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../fontes/construtos/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./constante-ou-variavel"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../fontes/construtos/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC"}
@@ -0,0 +1,2 @@
1
+ export * from './reatribuicao-variavel';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../fontes/declaracoes/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAC"}
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./reatribuicao-variavel"), exports);
18
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../fontes/declaracoes/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,0DAAwC"}
@@ -0,0 +1,18 @@
1
+ import { Construto } from "@designliquido/delegua/construtos";
2
+ import { Declaracao } from "@designliquido/delegua/declaracoes";
3
+ import { SimboloInterface } from "@designliquido/delegua/interfaces";
4
+ import { TipoDadosElementar } from "@designliquido/delegua/tipo-dados-elementar";
5
+ import { VisitanteComumPotigolInterface } from "../interfaces";
6
+ /**
7
+ * Uma declaração de reatribuição de variável.
8
+ * Em Potigol, para a correta formatação de código, precisamos separar as declarações.
9
+ */
10
+ export declare class ReatribuicaoVariavel extends Declaracao {
11
+ simbolo: SimboloInterface;
12
+ inicializador: Construto;
13
+ tipo: TipoDadosElementar;
14
+ referencia: boolean;
15
+ constructor(simbolo: SimboloInterface, inicializador: Construto, tipo?: TipoDadosElementar);
16
+ aceitar(visitante: VisitanteComumPotigolInterface): Promise<any>;
17
+ }
18
+ //# sourceMappingURL=reatribuicao-variavel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reatribuicao-variavel.d.ts","sourceRoot":"","sources":["../../fontes/declaracoes/reatribuicao-variavel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,mCAAmC,CAAC;AAC9D,OAAO,EAAE,UAAU,EAAE,MAAM,oCAAoC,CAAC;AAChE,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AACrE,OAAO,EAAE,kBAAkB,EAAE,MAAM,6CAA6C,CAAC;AAEjF,OAAO,EAAE,8BAA8B,EAAE,MAAM,eAAe,CAAC;AAE/D;;;GAGG;AACH,qBAAa,oBAAqB,SAAQ,UAAU;IAChD,OAAO,EAAE,gBAAgB,CAAC;IAC1B,aAAa,EAAE,SAAS,CAAC;IACzB,IAAI,EAAE,kBAAkB,CAAC;IACzB,UAAU,EAAE,OAAO,CAAC;gBAER,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,SAAS,EAAE,IAAI,GAAE,kBAA8B;IAQ/F,OAAO,CAAC,SAAS,EAAE,8BAA8B,GAAG,OAAO,CAAC,GAAG,CAAC;CAGzE"}
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ReatribuicaoVariavel = void 0;
4
+ const declaracoes_1 = require("@designliquido/delegua/declaracoes");
5
+ /**
6
+ * Uma declaração de reatribuição de variável.
7
+ * Em Potigol, para a correta formatação de código, precisamos separar as declarações.
8
+ */
9
+ class ReatribuicaoVariavel extends declaracoes_1.Declaracao {
10
+ constructor(simbolo, inicializador, tipo = undefined) {
11
+ super(Number(simbolo.linha), simbolo.hashArquivo);
12
+ this.simbolo = simbolo;
13
+ this.inicializador = inicializador;
14
+ this.tipo = tipo;
15
+ this.referencia = false;
16
+ }
17
+ async aceitar(visitante) {
18
+ return await visitante.visitarDeclaracaoReatribuicaoVariavel(this);
19
+ }
20
+ }
21
+ exports.ReatribuicaoVariavel = ReatribuicaoVariavel;
22
+ //# sourceMappingURL=reatribuicao-variavel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reatribuicao-variavel.js","sourceRoot":"","sources":["../../fontes/declaracoes/reatribuicao-variavel.ts"],"names":[],"mappings":";;;AACA,oEAAgE;AAMhE;;;GAGG;AACH,MAAa,oBAAqB,SAAQ,wBAAU;IAMhD,YAAY,OAAyB,EAAE,aAAwB,EAAE,OAA2B,SAAS;QACjG,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,WAAW,CAAC,CAAC;QAClD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,aAAa,GAAG,aAAa,CAAC;QACnC,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,UAAU,GAAG,KAAK,CAAC;IAC5B,CAAC;IAED,KAAK,CAAC,OAAO,CAAC,SAAyC;QACnD,OAAO,MAAM,SAAS,CAAC,qCAAqC,CAAC,IAAI,CAAC,CAAC;IACvE,CAAC;CACJ;AAjBD,oDAiBC"}
@@ -0,0 +1,4 @@
1
+ import { Chamavel } from "@designliquido/delegua/estruturas";
2
+ export declare class PotigolFuncao extends Chamavel {
3
+ }
4
+ //# sourceMappingURL=potigol-funcao.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"potigol-funcao.d.ts","sourceRoot":"","sources":["../../fontes/estruturas/potigol-funcao.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,mCAAmC,CAAC;AAE7D,qBAAa,aAAc,SAAQ,QAAQ;CAE1C"}
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PotigolFuncao = void 0;
4
+ const estruturas_1 = require("@designliquido/delegua/estruturas");
5
+ class PotigolFuncao extends estruturas_1.Chamavel {
6
+ }
7
+ exports.PotigolFuncao = PotigolFuncao;
8
+ //# sourceMappingURL=potigol-funcao.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"potigol-funcao.js","sourceRoot":"","sources":["../../fontes/estruturas/potigol-funcao.ts"],"names":[],"mappings":";;;AAAA,kEAA6D;AAE7D,MAAa,aAAc,SAAQ,qBAAQ;CAE1C;AAFD,sCAEC"}
@@ -1,8 +1,9 @@
1
- import { Atribuir, Binario, Comentario, Constante, Construto, Deceto, Dupla, ExpressaoRegular, FimPara, FormatacaoEscrita, FuncaoConstruto, Literal, Noneto, Octeto, Quarteto, Quinteto, Septeto, Sexteto, Super, TipoDe, Trio, Tupla, Unario } from '@designliquido/delegua/construtos';
1
+ import { Atribuir, Binario, Comentario, Constante, Construto, Deceto, Dupla, ExpressaoRegular, FimPara, FormatacaoEscrita, FuncaoConstruto, Literal, Noneto, Octeto, QualTipo, Quarteto, Quinteto, Septeto, Sexteto, Super, TipoDe, Trio, Tupla, Unario, Variavel } from '@designliquido/delegua/construtos';
2
2
  import { Classe, Const, ConstMultiplo, Expressao, FuncaoDeclaracao, Enquanto, Escolha, Escreva, Fazer, Importar, Para, ParaCada, Se, Tente, Var, VarMultiplo, Bloco, Continua, EscrevaMesmaLinha, Leia, LeiaMultiplo, Retorna, Sustar, Declaracao, Aleatorio, CabecalhoPrograma, TendoComo, PropriedadeClasse, InicioAlgoritmo } from '@designliquido/delegua/declaracoes';
3
- import { VisitanteComumInterface } from '@designliquido/delegua/interfaces';
4
3
  import { ContinuarQuebra, SustarQuebra } from '@designliquido/delegua/quebras';
5
- export declare class FormatadorPotigol implements VisitanteComumInterface {
4
+ import { ReatribuicaoVariavel } from '../declaracoes';
5
+ import { VisitanteComumPotigolInterface } from '../interfaces';
6
+ export declare class FormatadorPotigol implements VisitanteComumPotigolInterface {
6
7
  indentacaoAtual: number;
7
8
  quebraLinha: string;
8
9
  tamanhoIndentacao: number;
@@ -10,22 +11,24 @@ export declare class FormatadorPotigol implements VisitanteComumInterface {
10
11
  devePularLinha: boolean;
11
12
  deveIndentar: boolean;
12
13
  constructor(quebraLinha: string, tamanhoIndentacao?: number);
14
+ visitarDeclaracaoReatribuicaoVariavel(declaracao: ReatribuicaoVariavel): void;
15
+ visitarExpressaoQualTipo(expressao: QualTipo<string>): void;
13
16
  /**
14
17
  * Aparentemente só existe comentário de uma linha só em Potigol.
15
18
  * @param declaracao A declaração de comentário.
16
19
  */
17
20
  visitarDeclaracaoComentario(declaracao: Comentario): void;
18
- visitarDeclaracaoTendoComo(declaracao: TendoComo): void | Promise<any>;
19
- visitarDeclaracaoInicioAlgoritmo(declaracao: InicioAlgoritmo): Promise<any>;
20
- visitarDeclaracaoCabecalhoPrograma(declaracao: CabecalhoPrograma): Promise<any>;
21
- visitarExpressaoTupla(expressao: Tupla): Promise<any>;
21
+ visitarDeclaracaoTendoComo(declaracao: TendoComo): void;
22
+ visitarDeclaracaoInicioAlgoritmo(declaracao: InicioAlgoritmo): void;
23
+ visitarDeclaracaoCabecalhoPrograma(declaracao: CabecalhoPrograma): void;
24
+ visitarExpressaoTupla(expressao: Tupla): void;
22
25
  visitarDeclaracaoClasse(declaracao: Classe): void;
23
- visitarExpressaoPropriedadeClasse(expressao: PropriedadeClasse): any;
24
- visitarDeclaracaoConst(declaracao: Const): any;
25
- visitarDeclaracaoConstMultiplo(declaracao: ConstMultiplo): Promise<any>;
26
+ visitarExpressaoPropriedadeClasse(expressao: PropriedadeClasse): void;
27
+ visitarDeclaracaoConst(declaracao: Const): void;
28
+ visitarDeclaracaoConstMultiplo(declaracao: ConstMultiplo): void;
26
29
  visitarExpressaoDeAtribuicao(expressao: Atribuir): void;
27
30
  visitarDeclaracaoDeExpressao(declaracao: Expressao): void;
28
- visitarDeclaracaoAleatorio(declaracao: Aleatorio): Promise<any>;
31
+ visitarDeclaracaoAleatorio(declaracao: Aleatorio): void;
29
32
  visitarDeclaracaoDefinicaoFuncao(declaracao: FuncaoDeclaracao): void;
30
33
  visitarDeclaracaoEnquanto(declaracao: Enquanto): void;
31
34
  private formatarBlocoOuVetorDeclaracoes;
@@ -33,45 +36,45 @@ export declare class FormatadorPotigol implements VisitanteComumInterface {
33
36
  visitarDeclaracaoEscreva(declaracao: Escreva): void;
34
37
  visitarDeclaracaoFazer(declaracao: Fazer): void;
35
38
  visitarDeclaracaoImportar(declaracao: Importar): void;
36
- visitarDeclaracaoPara(declaracao: Para): any;
37
- visitarDeclaracaoParaCada(declaracao: ParaCada): Promise<any>;
39
+ visitarDeclaracaoPara(declaracao: Para): void;
40
+ visitarDeclaracaoParaCada(declaracao: ParaCada): void;
38
41
  visitarDeclaracaoSe(declaracao: Se): void;
39
42
  visitarDeclaracaoTente(declaracao: Tente): void;
40
- visitarDeclaracaoVar(declaracao: Var): any;
41
- visitarDeclaracaoVarMultiplo(declaracao: VarMultiplo): Promise<any>;
43
+ visitarDeclaracaoVar(declaracao: Var): void;
44
+ visitarDeclaracaoVarMultiplo(declaracao: VarMultiplo): void;
42
45
  visitarExpressaoAcessoIndiceVariavel(expressao: any): void;
43
46
  visitarExpressaoAcessoElementoMatriz(expressao: any): void;
44
47
  visitarExpressaoAcessoMetodo(expressao: any): void;
45
48
  visitarExpressaoAgrupamento(expressao: any): any;
46
- visitarExpressaoAtribuicaoPorIndice(expressao: any): Promise<any>;
47
- visitarExpressaoAtribuicaoPorIndicesMatriz(expressao: any): Promise<any>;
49
+ visitarExpressaoAtribuicaoPorIndice(expressao: any): void;
50
+ visitarExpressaoAtribuicaoPorIndicesMatriz(expressao: any): void;
48
51
  visitarExpressaoBinaria(expressao: Binario): void;
49
52
  visitarExpressaoBloco(declaracao: Bloco): any;
50
53
  visitarExpressaoContinua(declaracao?: Continua): ContinuarQuebra;
51
54
  visitarExpressaoDeChamada(expressao: any): void;
52
55
  visitarExpressaoDefinirValor(expressao: any): void;
53
56
  visitarExpressaoDeleguaFuncao(expressao: any): void;
54
- visitarExpressaoDeVariavel(expressao: any): void;
57
+ visitarExpressaoDeVariavel(expressao: Variavel): void;
55
58
  visitarExpressaoDicionario(expressao: any): void;
56
59
  visitarExpressaoExpressaoRegular(expressao: ExpressaoRegular): Promise<RegExp>;
57
60
  visitarDeclaracaoEscrevaMesmaLinha(declaracao: EscrevaMesmaLinha): void;
58
- visitarExpressaoFalhar(expressao: any): Promise<any>;
61
+ visitarExpressaoFalhar(expressao: any): void;
59
62
  visitarExpressaoFimPara(declaracao: FimPara): void;
60
63
  visitarExpressaoFormatacaoEscrita(declaracao: FormatacaoEscrita): void;
61
64
  visitarExpressaoFuncaoConstruto(expressao: FuncaoConstruto): void;
62
65
  visitarExpressaoIsto(expressao: any): void;
63
- visitarExpressaoLeia(expressao: Leia): Promise<any>;
64
- visitarExpressaoLeiaMultiplo(expressao: LeiaMultiplo): Promise<any>;
66
+ visitarExpressaoLeia(expressao: Leia): void;
67
+ visitarExpressaoLeiaMultiplo(expressao: LeiaMultiplo): void;
65
68
  visitarExpressaoLiteral(expressao: Literal): any;
66
69
  visitarExpressaoLogica(expressao: any): void;
67
70
  visitarExpressaoRetornar(declaracao: Retorna): any;
68
71
  visitarExpressaoSuper(expressao: Super): void;
69
72
  visitarExpressaoSustar(declaracao?: Sustar): SustarQuebra;
70
- visitarExpressaoTipoDe(expressao: TipoDe): Promise<any>;
73
+ visitarExpressaoTipoDe(expressao: TipoDe): void;
71
74
  visitarExpressaoUnaria(expressao: Unario): void;
72
75
  visitarExpressaoVetor(expressao: any): void;
73
76
  visitarDeclaracaoConstante(expressao: Constante): any;
74
- private formatarDeclaraTuplas;
77
+ private formatarDeclaracaoTuplas;
75
78
  visitarExpressaoDupla(expressao: Dupla): any;
76
79
  visitarExpressaoTrio(expressao: Trio): any;
77
80
  visitarExpressaoQuarteto(expressao: Quarteto): any;
@@ -1 +1 @@
1
- {"version":3,"file":"formatador-potigol.d.ts","sourceRoot":"","sources":["../../fontes/formatador/formatador-potigol.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"formatador-potigol.d.ts","sourceRoot":"","sources":["../../fontes/formatador/formatador-potigol.ts"],"names":[],"mappings":"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"}