()
| 250 | |
| 251 | #[test] |
| 252 | fn parse_funcs_with_args() -> Result<()> { |
| 253 | let exports = parse("function foo(bar) {}")?; |
| 254 | assert_eq!(Vec::<&str>::default(), exports); |
| 255 | Ok(()) |
| 256 | } |
| 257 | |
| 258 | #[test] |
| 259 | fn parse_named_func_export_and_const_export() -> Result<()> { |