diff options
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index 69373b2fa..d6de4e122 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -26,7 +26,7 @@ use std::path::PathBuf; use std::rc::Rc; /// Provide static assets that are not preloaded in the compiler snapshot. -fn get_asset(asset: &str) -> Option<&'static str> { +pub fn get_asset(asset: &str) -> Option<&'static str> { macro_rules! inc { ($e:expr) => { Some(include_str!(concat!("dts/", $e))) |