The location of the important part of the node (identifier or whatever)

Property definitions

nitc $ ANode :: hot_location
	# The location of the important part of the node (identifier or whatever)
	fun hot_location: Location do return location
src/parser/parser_nodes.nit:29,2--30,46

nitc $ AAttrPropdef :: hot_location
	redef fun hot_location
	do
		return n_id2.location
	end
src/parser/parser_nodes.nit:1398,2--1401,4

nitc $ AStdClassdef :: hot_location
	redef fun hot_location do return n_qid.location
src/parser/parser_nodes.nit:1277,2--48

nitc $ AMethPropdef :: hot_location
	redef fun hot_location
	do
		if n_methid != null then
			return n_methid.location
		else if n_kwinit != null then
			return n_kwinit.location
		else if n_kwnew != null then
			return n_kwnew.location
		else
			return location
		end
	end
src/parser/parser_nodes.nit:1441,2--1452,4