C++: Encode string value of data flow nodes in ExecState

This commit is contained in:
Jeroen Ketema
2022-03-21 21:29:42 +01:00
parent e05227d3fe
commit b79eb6d10d

View File

@@ -75,8 +75,9 @@ class ExecState extends DataFlow::FlowState {
DataFlow::Node snd;
ExecState() {
this = "ExecState (" + fst.getLocation() + ", " + snd.getLocation() + ")" and
interestingConcatenation(fst, snd)
this =
"ExecState (" + fst.getLocation() + " | " + fst + ", " + snd.getLocation() + " | " + snd + ")" and
interestingConcatenation(fst, snd)
}
DataFlow::Node getFstNode() { result = fst }