Trait requirements using a comma
Aberta
feature request
hack
- Linguagem predominante
- C++
- Estrelas
- 18.7k
- Forks
- 3.1k
- Merge médio
- 1h 47min
- PRs com merge (30d)
- 2
Descrição
Currently this is not supported and you have to declare a requirement per line.
``` hack
trait ObserverAnnotation {
require implements Annotator;
require implements Subject;
}
```
Would be nice if you could comma separate them the same way you do extends and implements for a class.
``` hack
trait ObserverAnnotation {
require implements Annotator, Subject;
}
```
Guia de contribuição
Avaliação
Esta issue ainda não foi avaliada.