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 9e05177 commit 88d8673Copy full SHA for 88d8673
src/analyses/ai.cpp
@@ -37,7 +37,7 @@ xmlt ai_domain_baset::output_xml(
37
{
38
std::ostringstream out;
39
output(out, ai, ns);
40
- xmlt xml("domain");
+ xmlt xml("abstract_state");
41
xml.data=out.str();
42
return xml;
43
}
@@ -170,7 +170,7 @@ jsont ai_baset::output_json(
170
json_numbert(std::to_string(i_it->location_number));
171
location["sourceLocation"]=
172
json_stringt(i_it->source_location.as_string());
173
- location["domain"]=find_state(i_it).output_json(*this, ns);
+ location["abstractState"]=find_state(i_it).output_json(*this, ns);
174
175
// Ideally we need output_instruction_json
176
0 commit comments