Compiler/AST interpreter: Difference between revisions

Content added Content deleted
No edit summary
Line 2,490: Line 2,490:
The complete implementation for the compiler tasks can be found in a GitHub repository at [https://github.com/edadma/rosettacodeCompiler github.com/edadma/rosettacodeCompiler] which includes full unit testing for the samples given in [[Compiler/Sample programs]].
The complete implementation for the compiler tasks can be found in a GitHub repository at [https://github.com/edadma/rosettacodeCompiler github.com/edadma/rosettacodeCompiler] which includes full unit testing for the samples given in [[Compiler/Sample programs]].


The following code implements as AST interpreter for the output of the [http://rosettacode.org/wiki/Compiler/syntax_analyzer#Scala parser]
The following code implements an interpreter for the output of the [http://rosettacode.org/wiki/Compiler/syntax_analyzer#Scala parser].


<lang scala>
<lang scala>