@designliquido/delegua
Version:
Linguagem de programação simples e moderna usando português estruturado.
22 lines • 606 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Vetor = void 0;
class Vetor {
constructor(hashArquivo, linha, valores, tamanho, tipo) {
this.linha = linha;
this.hashArquivo = hashArquivo;
this.tipo = tipo;
this.valores = valores;
if (tamanho) {
this.tamanho = tamanho;
}
else {
this.tamanho = this.valores.length;
}
}
async aceitar(visitante) {
return await visitante.visitarExpressaoVetor(this);
}
}
exports.Vetor = Vetor;
//# sourceMappingURL=vetor.js.map