Maes95 / 2Flex1Cup

2Flex1Cup
0 stars 0 forks source link

Dudas para PL #34

Closed Maes95 closed 8 years ago

Maes95 commented 8 years ago
  1. ¿Sustituir OPCOMP por comparator_op en todas sus apariciones?
  2. Los errores léxicos: ¿deben ser irrecuperables (throw new RuntimeException) o debe ser posible seguir analizando?
  3. Comentarios: ¿unilínea o multilínea?
  4. Indentación??!
Maes95 commented 8 years ago
EXP::= EXP OP EXP
       | FACTOR {: System.out.println("EXP"); :}
       ;

EXP_BOOL::= EXP comparator_op EXP
         | EXP_BOOL OPLOG EXP_BOOL
         ;

OP::= comparator_op
      | OPLOG
      | OPARIT {: System.out.println("OP"); :}
      ;

/* OPCOMP::= comparator_op {: System.out.println("OPCOMP"); :}; */
pabloFuente commented 8 years ago

RESPUESTAS

  1. No necesario por ahora

  2. Los errores léxicos deben ser recuperables
  3. Los comentarios son multilínea
  4. No necesario por ahora