use swc_common::{Span, DUMMY_SP, SyntaxContext};
use swc_ecma_ast::*;
use swc_ecma_visit::{VisitMut, VisitMutWith, VisitWith};
pub struct TestStringLiteralInto {
}
impl VisitMut for TestStringLiteralInto {
}
fn get_label() -> String {
return "hello".to_string();
}
fn get_conditional(flag: bool) -> String {
if flag {
"yes".to_string()
} else {
"no".to_string()
}
}