aboutsummaryrefslogtreecommitdiffstats
path: root/c_lexer/src/c_lexer.cpp
blob: e01d73f79467b34e03799a9f40ec871b541426fa (plain)
1
2
3
4
5
6
7
#include "c_lexer.hpp"

std::string toJson(const std::string& classType, const std::string& text, const std::string& strLine, const std::string& srcCol, const std::string& srcLine, const std::string& fName) {
	std::string tmp = "{\"Class\":\"" + classType + "\", \"Text\":\"" + text + "\", \"StreamLine\":" + strLine + ", \"SourceFile\":\"" + fName + "\", \"SourceLine\":" + srcLine + ", \"SourceCol\":" + srcCol + "}";

	return tmp;
}