()
| 1301 | } |
| 1302 | |
| 1303 | #[test] |
| 1304 | fn includes_from_raw() { |
| 1305 | let f = facts("#include \"commands.def\"\n// #include \"in-comment.h\"\n"); |
| 1306 | // Raw-text scan: the commented include IS captured (parity with the |
| 1307 | // JS INCLUDE_RE over raw text). |
| 1308 | assert_eq!(f.includes, vec!["commands.def", "in-comment.h"]); |
| 1309 | } |
| 1310 | } |