Type Definition seax_util::compiler_tools::SymTable [] [src]

type SymTable<'a> = ForkTable<'a, &'a str, Index>;

The symbol table for bound names is represented as a ForkTable mapping &str (names) to (uint,uint) tuples, representing the location in the $e stack storing the value bound to that name.