Add initial version of value analysis and dataflow constant propagation

This commit is contained in:
Jannis Christopher Köhl
2022-08-25 16:43:46 +00:00
parent 9b735a7132
commit 4f9c30fb67
26 changed files with 1948 additions and 2 deletions

View File

@@ -475,7 +475,10 @@ where
r#"<td colspan="{colspan}" {fmt} align="left">{state}</td>"#,
colspan = this.style.num_state_columns(),
fmt = fmt,
state = format!("{:?}", DebugWithAdapter { this: state, ctxt: analysis }),
state = dot::escape_html(&format!(
"{:?}",
DebugWithAdapter { this: state, ctxt: analysis }
)),
)
})
}