()
| 1319 | } |
| 1320 | |
| 1321 | #[test] |
| 1322 | fn includes_from_raw() { |
| 1323 | let f = facts("#include \"commands.def\"\n// #include \"in-comment.h\"\n"); |
| 1324 | // Raw-text scan: the commented include IS captured (parity with the |
| 1325 | // JS INCLUDE_RE over raw text). |
| 1326 | assert_eq!(f.includes, vec!["commands.def", "in-comment.h"]); |
| 1327 | } |
| 1328 | } |