-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from DanielVenturini/análise_semantica
Análise semantica - simplificação de todas as regras pronta: árvore podada.
- Loading branch information
Showing
7 changed files
with
580 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{EBNF simplificada para a árvore podada. Todos os nós intermediários não necessários são removidos} | ||
{uma mistura da EBNF com REGEX para padronizar a árvore podada} | ||
{Não condiz com uma representação formal; apenas para me organizar melhor} | ||
|
||
programa -> declaracao_variaveis | inicializacao_variaveis | declaracao_funcao {aqui há recursão em programa} | ||
declaracao_variaveis -> [INTEIRO | FLUTUANTE] lista_variaveis | ||
{inicializacao_variaveis -> ID expressao ==> substitui pela atribuição} | ||
ID -> ID [] {quando houver indice} | ||
lista_variaveis -> lista_variaveis ID | ID | ||
declaracao_funcao -> [INTEIRO | FLUTUANTE] ID lista_parametros corpo | ||
{cabecalho ==> foi removido e os nós inseridos em declaracao_funcao} | ||
lista_parametros -> lista_parametro parametro | parametro | ||
parametro -> [INTEIRO] ID {não necessáriamente há o indice do ID []} | ||
corpo -> expressao | declaracao_variaveis | se | repita| leia| escreva | retorna {aqui também há recursão} | ||
se -> expressao corpoSE | expressao corpoSE corpoSENAO {corpo é normal, apenas para diferenciar} | ||
repita -> corpo expressao | ||
leia -> ID | ||
escreva -> expressao | ||
retorna -> expressao | ||
chamada_funcao -> ID lista_argumentos | ||
lista_argumentos -> lista_argumento expressao | expressao | ||
atribuicao -> ID expressao | ||
{expressao_ ==> não há mais expressão; todos os nós intermediários foram simplificados} | ||
expressao_unaria -> operador_[soma|negacao] fator {não necessáriamente um fator, mas não pensei em nada melhor} |
Oops, something went wrong.