Guest User

Untitled

a guest
Dec 11th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. /* Pontuação */
  2.  
  3. "(" { return symbol(AnalisadorSintaticoSym.LEFT_PARENTHESIS, yytext());}
  4. ")" { return symbol(AnalisadorSintaticoSym.RIGHT_PARENTHESIS, yytext());}
  5. "[" { return symbol(AnalisadorSintaticoSym.OPEN_BRACKETS, yytext());}
  6. "]" { return symbol(AnalisadorSintaticoSym.CLOSE_BRACKETS, yytext());}
  7. ":" { return symbol(AnalisadorSintaticoSym.COLON, yytext());}
  8. ";" { return symbol(AnalisadorSintaticoSym.SEMI_COLON, yytext());}
  9. "." { return symbol(AnalisadorSintaticoSym.DOT, yytext());}
  10. "," { return symbol(AnalisadorSintaticoSym.COMMA, yytext());}
Add Comment
Please, Sign In to add comment