Retrieve the associated AST node of a mmodule.

This method is used to associate model entity with syntactic entities.

If the module is not associated with a node, returns null.

Property definitions

nitc :: loader $ ModelBuilder :: mmodule2node
	# Retrieve the associated AST node of a mmodule.
	# This method is used to associate model entity with syntactic entities.
	#
	# If the module is not associated with a node, returns null.
	fun mmodule2node(mmodule: MModule): nullable AModule
	do
		return mmodule2nmodule.get_or_null(mmodule)
	end
src/loader.nit:1121,2--1128,4