The current node, used to print errors, debug and stack-traces

Property definitions

nitc $ NaiveInterpreter :: current_node
	# The current node, used to print errors, debug and stack-traces
	fun current_node: nullable ANode
	do
		if frames.is_empty then return null
		return frames.first.current_node
	end
src/interpreter/naive_interpreter.nit:409,2--414,4