A translator to implement one part of the language in terms of another.
This simplifies the compiler/interpreter implementation. This translates
from:
Permissions "function" "(" Arglist ")" ("extends" ...)?
"{"
Program
"}"
to
Permissions "var" "=" "function" "(" Arglist ")" ("extends" ...)?
"{"
Program
"};"
author: Rob Clark version: 0.1 |