Skip to main content

only_diagnostic/
phase.rs

1#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
2pub enum DiagnosticPhase {
3    Lex,
4    Parse,
5    Lower,
6    Semantic,
7    Engine,
8    Host,
9}