This commit is contained in:
Takayuki Maeda 2022-10-11 02:43:36 +09:00
parent eed7f2f58b
commit 68260289b5
4 changed files with 83 additions and 23 deletions

View file

@ -336,19 +336,6 @@ impl DiagnosticMessage {
}
}
}
/// Returns the `String` contained within the `DiagnosticMessage::Str` variant, assuming that
/// this diagnostic message is of the legacy, non-translatable variety. Panics if this
/// assumption does not hold.
///
/// Don't use this - it exists to support some places that do comparison with diagnostic
/// strings.
pub fn expect_str(&self) -> &str {
match self {
DiagnosticMessage::Str(s) => s,
_ => panic!("expected non-translatable diagnostic message"),
}
}
}
/// `From` impl that enables existing diagnostic calls to functions which now take