nitc :: InterpreterFrame :: defaultinit
# Implementation of a Frame with a Hashmap to store local variables class InterpreterFrame super Frame # Mapping between a variable and the current value var map: Map[Variable, Instance] = new HashMap[Variable, Instance] end