aboutsummaryrefslogtreecommitdiff
path: root/compilador/errors.py
blob: 87c925e8147d5fb34a4961661a99d9288ea759c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import sys
from typing import List

from tabla import Token

class Error:
    errors = {
        'L_CAR_LARGO': 'Más de un caracter en una literal de caracter',
        'L_CAR_VACIO': 'Literal de caracter vacía',
        'S_ESPERA_EXPR': 'Se esperaba una expresión',
        'S_ESPERA_IDENT': 'Se esperaba un identificador',
        'S_ESPERA_IDENT_O_LIT': 'Se esperaba un identificador o una literal',
        'S_ESPERA_OPER': 'Se esperaba un operador',
        'S_ESPERA_PC_O_IGUAL': 'Se esperaba `;` o `=`',
        'S_ESPERA_PC': 'Se esperaba `;`',
    }

    def __init__(self, error, numlinea):
        print("Error en línea %d: %s" % (numlinea, self.errors[error]), file=sys.stderr)

    def __init__(self, got: Token, expects: List[Token], numlinea = int):
        strexp = ', '.join(['`%s\'' % e.value for e in expects])
        self.message = "Error en la línea %d, se encontró `%s', pero se esperaba %s" % (numlinea, got.value, strexp)