mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
e48263b2f3
swc_visit_macros: - Remove `&dyn Node` from `Visit`. - Implement `VisitWith<V>` for `[T]`.
38 lines
872 B
Rust
38 lines
872 B
Rust
use swc_common::{input::StringInput, FileName};
|
|
use swc_ecma_ast::*;
|
|
use swc_ecma_parser::{lexer::Lexer, Parser};
|
|
use swc_ecma_visit::{All, VisitAll, VisitWith};
|
|
|
|
struct Issue1967;
|
|
|
|
impl VisitAll for Issue1967 {
|
|
fn visit_expr(&mut self, _: &Expr) {
|
|
panic!("intended")
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
#[should_panic = "intended"]
|
|
fn issue_1967() {
|
|
testing::run_test2(false, |cm, _handler| {
|
|
let fm = cm.new_source_file(FileName::Anon, "function foo(){ return 'I'; }".to_string());
|
|
let lexer = Lexer::new(
|
|
Default::default(),
|
|
EsVersion::latest(),
|
|
StringInput::from(&*fm),
|
|
None,
|
|
);
|
|
|
|
let mut parser = Parser::new_from(lexer);
|
|
|
|
let m = parser.parse_module().unwrap();
|
|
|
|
m.visit_with(&mut All {
|
|
visitor: Issue1967 {},
|
|
});
|
|
|
|
Ok(())
|
|
})
|
|
.unwrap();
|
|
}
|