We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d971416 commit 07c225dCopy full SHA for 07c225d
src/ice.rs
@@ -152,6 +152,7 @@ impl ICE {
152
pub(crate) fn into_report(self, global_tempdir_path: &PathBuf) -> Report {
153
let ice = &self;
154
155
+ let ice_oneliner = self.to_printable(global_tempdir_path);
156
let mvce_string: String = reduce_ice_code_to_string(ice.clone(), global_tempdir_path);
157
//dbg!(&mvce_string);
158
@@ -266,8 +267,10 @@ original:
266
267
};
268
269
let data = format!(
- "
270
+ "<!--
271
+{ice_oneliner}
272
File: {original_path_display}
273
+-->
274
275
{snippet}
276
0 commit comments