use lazy_static::lazy_static;
use maplit::hashmap;
use crate::ns::*;
lazy_static! {
pub static ref DATA: HashMap<i32, String> = hashmap! {
FxDiagnosticKind::EntityIsNotAType.id() => "Entity is not a type.".into(),
FxDiagnosticKind::ImplicitCoercionToUnrelatedType.id() => "Implicit coercion of a value of type {1} to an unrelated type {2}.".into(),
FxDiagnosticKind::EntityIsReadOnly.id() => "Entity is read-only.".into(),
FxDiagnosticKind::EntityIsWriteOnly.id() => "Entity is write-only.".into(),
FxDiagnosticKind::EntityMustNotBeDeleted.id() => "Entity must not be deleted.".into(),
};
}