1use crate::TranslatorError; 2 3impl From<oxc_sourcemap::Error> for TranslatorError { 4 fn from(err: oxc_sourcemap::Error) -> Self { 5 TranslatorError::SourceMap(err) 6 } 7}