↧
Answer by glampert for Lexer+Parser code for my "Reedoo" programming language
C styleWell, the first thing I have to say is that your code is very C-like. The first action here would be to move all those loose functions and globals into two C++ classes, Lexer and Parser.Another...
View ArticleAnswer by user52292 for Lexer+Parser code for my "Reedoo" programming language
This will be quite big project it seems. I will try to give you some hints (I have written something like ECMA-262 / JavaScript compiler and iterpreter with custom bytecode as school project).If you...
View ArticleLexer+Parser code for my "Reedoo" programming language
I've been working on my own programming language, as a hobby for the past couple of months now, called Reedoo. It is implemented in pure C++ 11 and uses only the libraries that come with C++; no...
View Article