Lines Matching refs:ModuleError
257 ) -> Result<(), ModuleError> { in merge() argument
260 return Err(ModuleError::IncompatibleSignature( in merge()
272 pub enum ModuleError { enum
305 impl<'a> From<CompileError<'a>> for ModuleError { implementation
313 impl std::error::Error for ModuleError { implementation
329 impl std::fmt::Display for ModuleError { implementation
365 impl std::convert::From<CodegenError> for ModuleError { implementation
371 impl std::convert::From<SetError> for ModuleError { implementation
378 pub type ModuleResult<T> = Result<T, ModuleError>;
748 Err(ModuleError::IncompatibleDeclaration(name.to_owned())) in declare_function()
795 Err(ModuleError::IncompatibleDeclaration(name.to_owned())) in declare_data()