Property definitions

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
src/interpreter/naive_interpreter.nit:859,1--865,3