Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Não esta retornando erros no retorno de Delégua #95

Closed
samuelrvg opened this issue Jun 1, 2022 · 0 comments · Fixed by #100
Closed

Não esta retornando erros no retorno de Delégua #95

samuelrvg opened this issue Jun 1, 2022 · 0 comments · Fixed by #100
Assignees
Labels
problema Problemas na execução do Delégua

Comments

@samuelrvg
Copy link
Member

samuelrvg commented Jun 1, 2022

Testando:

    classe Animal {
      correr() {
        escreva("Correndo Loucamente");
      }
    }
    classe Cachorro herda Animal {
      latir() {
        escreva("Au Au Au Au"); aqui é pra gerar um erro
      }
    }
    
    var nomeDoCachorro = Cachorro();
    nomeDoCachorro.correr();
    nomeDoCachorro.latir();

Deveria retornar erro, mas não retorna e funciona normal.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
problema Problemas na execução do Delégua
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants