Skip to content

Commit

Permalink
Vetor passa a guardar o tipo elementar.
Browse files Browse the repository at this point in the history
  • Loading branch information
leonelsanchesdasilva committed Aug 7, 2024
1 parent d12ed4d commit 50c11e5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion fontes/construtos/vetor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ export class Vetor implements Construto {
linha: number;
hashArquivo: number;
tamanho: number;
tipo?: string;

valores: any[];

constructor(hashArquivo: number, linha: number, valores: any[], tamanho?: number) {
constructor(hashArquivo: number, linha: number, valores: any[], tamanho?: number, tipo?: string) {
this.linha = linha;
this.hashArquivo = hashArquivo;
this.tipo = tipo;

this.valores = valores;
if (tamanho) {
Expand Down

0 comments on commit 50c11e5

Please sign in to comment.