ASTInterpreter

Description

Basic AST interpreter for Pharo

Details

Source
GitHub
Dialect
pharo (25% confidence)
Forks
1
Created
March 15, 2019
Updated
March 22, 2019

README excerpt

# ASTInterpreter
Basic AST interpreter for Pharo

## Example

```smalltalk
interpreter := ASTInterpreter new.
context := AIRootContext new.
interpreter resetContext: context.

compiledCode := interpreter compile: '1+1'.
interpreter interpretDoIt: compiledCode.
```
← Back to results