in reply to Variables and Scope: The battle begins
I totally agree. What you are doing here is creating a fairly brute-force, recursive-descent compiler/assembler ... an approach which makes a program that is every bit as, or more so, complicated as the language that is to be processed. A far better approach is to use a parser, such as the one listed above, in order to permanently shove “the complexity of the language” into the grammar.
Don’t re-invent this wheel. Especially not this one.
Replies are listed 'Best First'. | |
---|---|
Re^2: Variables and Scope: The battle begins
by Shadow-Master (Initiate) on Dec 12, 2013 at 16:30 UTC |