From 508f7883308ff3ca204e1017b27dcbeb9b71dd8f Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 11 Feb 2017 14:31:25 +0000 Subject: Finished lexer for the parser --- c_lexer/src/c_lexer.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'c_lexer/src/c_lexer.cpp') diff --git a/c_lexer/src/c_lexer.cpp b/c_lexer/src/c_lexer.cpp index e01d73f..0e9f021 100644 --- a/c_lexer/src/c_lexer.cpp +++ b/c_lexer/src/c_lexer.cpp @@ -1,7 +1,11 @@ #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 + "}"; +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; + return tmp; } -- cgit