use crate::languages::{Language, c_base::CBaseRules};
pub struct JavaScript;
impl Language for JavaScript {
fn name(&self) -> &'static str {
"JavaScript"
}
fn extensions(&self) -> &'static [&'static str] {
&["js", "mjs", "cjs"]
}
fn line_comment(&self) -> Option<&'static str> {
Some(CBaseRules::LINE_COMMENT)
}
fn block_comment(&self) -> Option<(&'static str, &'static str)> {
Some(CBaseRules::BLOCK_COMMENT)
}
fn import_keywords(&self) -> &'static [&'static str] {
&["import ", "require("]
}
}