Skip to content

Commit 88d8673

Browse files
author
martin
committed
Rename the XML output to something a bit more meaningful.
1 parent 9e05177 commit 88d8673

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/analyses/ai.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ xmlt ai_domain_baset::output_xml(
3737
{
3838
std::ostringstream out;
3939
output(out, ai, ns);
40-
xmlt xml("domain");
40+
xmlt xml("abstract_state");
4141
xml.data=out.str();
4242
return xml;
4343
}
@@ -170,7 +170,7 @@ jsont ai_baset::output_json(
170170
json_numbert(std::to_string(i_it->location_number));
171171
location["sourceLocation"]=
172172
json_stringt(i_it->source_location.as_string());
173-
location["domain"]=find_state(i_it).output_json(*this, ns);
173+
location["abstractState"]=find_state(i_it).output_json(*this, ns);
174174

175175
// Ideally we need output_instruction_json
176176
std::ostringstream out;

0 commit comments

Comments
 (0)