@designliquido/delegua 0.10.2 → 0.10.3
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.
- package/bin/package.json +14 -14
- package/fontes/avaliador-sintatico/retornos/retorno-declaracao.d.ts +1 -1
- package/fontes/avaliador-sintatico/retornos/retorno-primario.d.ts +1 -1
- package/fontes/avaliador-sintatico/retornos/retorno-resolver-declaracao.d.ts +1 -1
- package/fontes/construtos/literal.d.ts +1 -1
- package/package.json +14 -14
package/bin/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@designliquido/delegua",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "Linguagem de programação simples e moderna usando português estruturado",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -57,29 +57,29 @@
|
|
|
57
57
|
},
|
|
58
58
|
"homepage": "https://github.com/DesignLiquido/delegua#readme",
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@babel/preset-env": "^7.
|
|
60
|
+
"@babel/preset-env": "^7.20.2",
|
|
61
61
|
"@designliquido/delegua-estatistica": "^0.0.5",
|
|
62
62
|
"@designliquido/delegua-fisica": "^0.0.2",
|
|
63
|
-
"@designliquido/delegua-matematica": "^0.0
|
|
63
|
+
"@designliquido/delegua-matematica": "^0.2.0",
|
|
64
64
|
"@designliquido/delegua-tempo": "^0.0.1",
|
|
65
|
-
"@types/jest": "^29.
|
|
66
|
-
"@types/node": "^
|
|
67
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
68
|
-
"@typescript-eslint/parser": "^5.
|
|
65
|
+
"@types/jest": "^29.2.4",
|
|
66
|
+
"@types/node": "^18.11.13",
|
|
67
|
+
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
68
|
+
"@typescript-eslint/parser": "^5.46.1",
|
|
69
69
|
"copyfiles": "^2.4.1",
|
|
70
|
-
"eslint": "^8.
|
|
70
|
+
"eslint": "^8.29.0",
|
|
71
71
|
"eslint-config-prettier": "^8.5.0",
|
|
72
72
|
"eslint-plugin-prettier": "^4.2.1",
|
|
73
|
-
"jest": "^29.
|
|
74
|
-
"prettier": "^2.
|
|
75
|
-
"release-it": "^
|
|
76
|
-
"ts-jest": "^29.0.
|
|
73
|
+
"jest": "^29.3.1",
|
|
74
|
+
"prettier": "^2.8.1",
|
|
75
|
+
"release-it": "^15.5.1",
|
|
76
|
+
"ts-jest": "^29.0.3",
|
|
77
77
|
"ts-node": "^10.9.1",
|
|
78
|
-
"typescript": "^4.
|
|
78
|
+
"typescript": "^4.9.4"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"browser-process-hrtime": "^1.0.0",
|
|
82
82
|
"chalk": "4.1.2",
|
|
83
|
-
"commander": "^
|
|
83
|
+
"commander": "^9.4.1"
|
|
84
84
|
}
|
|
85
85
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { Classe, FuncaoDeclaracao, Var } from "../../declaracoes";
|
|
2
2
|
import { RetornoResolverDeclaracao } from "./retorno-resolver-declaracao";
|
|
3
|
-
export
|
|
3
|
+
export type RetornoDeclaracao = Var | FuncaoDeclaracao | Classe | RetornoResolverDeclaracao;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { AcessoIndiceVariavel, Agrupamento, Chamada, Dicionario, FuncaoConstruto, Isto, Literal, Super, Variavel, Vetor } from '../../construtos';
|
|
2
2
|
import { Importar } from '../../declaracoes';
|
|
3
|
-
export
|
|
3
|
+
export type RetornoPrimario = Super | Vetor | Dicionario | Literal | Isto | Agrupamento | Variavel | AcessoIndiceVariavel | Chamada | Importar | FuncaoConstruto;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { Bloco, Continua, Enquanto, Escolha, Escreva, Expressao, Fazer, Para, Retorna, Se, Sustar, Tente } from '../../declaracoes';
|
|
2
|
-
export
|
|
2
|
+
export type RetornoResolverDeclaracao = Escreva | Expressao | Se | Enquanto | Para | Sustar | Continua | Retorna | Escolha | Tente | Fazer | Bloco;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InterpretadorInterface } from '../interfaces';
|
|
2
2
|
import { Construto } from './construto';
|
|
3
|
-
export
|
|
3
|
+
export type ValorLiteral = number | string | number[] | string[] | any;
|
|
4
4
|
export declare class Literal implements Construto {
|
|
5
5
|
linha: number;
|
|
6
6
|
hashArquivo?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@designliquido/delegua",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
4
4
|
"description": "Linguagem de programação simples e moderna usando português estruturado",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -57,29 +57,29 @@
|
|
|
57
57
|
},
|
|
58
58
|
"homepage": "https://github.com/DesignLiquido/delegua#readme",
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@babel/preset-env": "^7.
|
|
60
|
+
"@babel/preset-env": "^7.20.2",
|
|
61
61
|
"@designliquido/delegua-estatistica": "^0.0.5",
|
|
62
62
|
"@designliquido/delegua-fisica": "^0.0.2",
|
|
63
|
-
"@designliquido/delegua-matematica": "^0.0
|
|
63
|
+
"@designliquido/delegua-matematica": "^0.2.0",
|
|
64
64
|
"@designliquido/delegua-tempo": "^0.0.1",
|
|
65
|
-
"@types/jest": "^29.
|
|
66
|
-
"@types/node": "^
|
|
67
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
68
|
-
"@typescript-eslint/parser": "^5.
|
|
65
|
+
"@types/jest": "^29.2.4",
|
|
66
|
+
"@types/node": "^18.11.13",
|
|
67
|
+
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
68
|
+
"@typescript-eslint/parser": "^5.46.1",
|
|
69
69
|
"copyfiles": "^2.4.1",
|
|
70
|
-
"eslint": "^8.
|
|
70
|
+
"eslint": "^8.29.0",
|
|
71
71
|
"eslint-config-prettier": "^8.5.0",
|
|
72
72
|
"eslint-plugin-prettier": "^4.2.1",
|
|
73
|
-
"jest": "^29.
|
|
74
|
-
"prettier": "^2.
|
|
75
|
-
"release-it": "^
|
|
76
|
-
"ts-jest": "^29.0.
|
|
73
|
+
"jest": "^29.3.1",
|
|
74
|
+
"prettier": "^2.8.1",
|
|
75
|
+
"release-it": "^15.5.1",
|
|
76
|
+
"ts-jest": "^29.0.3",
|
|
77
77
|
"ts-node": "^10.9.1",
|
|
78
|
-
"typescript": "^4.
|
|
78
|
+
"typescript": "^4.9.4"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"browser-process-hrtime": "^1.0.0",
|
|
82
82
|
"chalk": "4.1.2",
|
|
83
|
-
"commander": "^
|
|
83
|
+
"commander": "^9.4.1"
|
|
84
84
|
}
|
|
85
85
|
}
|