UNPKG

@designliquido/foles

Version:

Linguagem de folhas de estilo para documentos em geral em português

18 lines 556 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Simbolo = void 0; class Simbolo { constructor(tipo, lexema, literal, linha, colunaInicial, colunaFinal) { this.tipo = tipo; this.lexema = lexema; this.literal = literal; this.linha = linha; this.colunaInicial = colunaInicial; this.colunaFinal = colunaFinal; } paraTexto() { return this.tipo + " " + this.lexema + " " + this.literal; } } exports.Simbolo = Simbolo; //# sourceMappingURL=simbolo.js.map