-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededstatic analysisStatic code analysisStatic code analysis
Description
Add TypeInfoKind::Error for type poisoning (like rustc's TyKind::Error):
pub enum TypeInfoKind {
// ... existing variants
Error, // Represents a type that couldn't be resolved
}Benefits:
- Prevents cascading errors when a type lookup fails
- Allows type checking to continue more gracefully
- Aligns with rustc's error handling model
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededstatic analysisStatic code analysisStatic code analysis