# Functions
DecodedSyntaxTree returns an Abstract Syntax Tree by decoding the bytecode instructions.
EncodedSyntaxTree returns bytecode instructions for the given Abstract Syntax Tree.
# Constants
Func marks that the instructions for a function call will follow it.
The nil instruction.
Number marks that the instructions for a number will follow it.
String marks that the instructions for a string will follow it.
Variable marks that the instructions for a variable will follow it.
VariableDef marks that the instructions for an untyped variable definition will follow it.
VariableDef marks that the instructions for a typed variable definition will follow it.
# Type aliases
An Instruction is a singular byte used to represent any bytecode instruction.
The Instructions encoded from an Abstract Syntax Tree.