Fix bad indentation in handleCombinedJSON()

This commit is contained in:
Kamil Śliwak 2023-06-13 11:27:35 +02:00
parent e44b8b9097
commit 0713adde04

View File

@ -914,9 +914,9 @@ void CommandLineInterface::handleCombinedJSON()
{ {
output[g_strSources][sourceCode.first] = Json::Value(Json::objectValue); output[g_strSources][sourceCode.first] = Json::Value(Json::objectValue);
output[g_strSources][sourceCode.first]["AST"] = ASTJsonExporter( output[g_strSources][sourceCode.first]["AST"] = ASTJsonExporter(
m_compiler->state(), m_compiler->state(),
m_compiler->sourceIndices() m_compiler->sourceIndices()
).toJson(m_compiler->ast(sourceCode.first)); ).toJson(m_compiler->ast(sourceCode.first));
output[g_strSources][sourceCode.first]["id"] = m_compiler->sourceIndices().at(sourceCode.first); output[g_strSources][sourceCode.first]["id"] = m_compiler->sourceIndices().at(sourceCode.first);
} }
} }