Helper function to display an advice on a node.

Alias for: self.toolcontext.advice(n.hot_location, text)

Property definitions

nitc $ ModelBuilder :: advice
	# Helper function to display an advice on a node.
	# Alias for: `self.toolcontext.advice(n.hot_location, text)`
	fun advice(n: nullable ANode, tag, text: String)
	do
		var l = null
		if n != null then l = n.hot_location
		self.toolcontext.advice(l, tag, text)
	end
src/modelbuilder_base.nit:240,2--247,4