Initialize a location corresponding to an opaque file.

The path is used as is and is not open nor read.

Property definitions

nitc $ Location :: opaque_file
	# Initialize a location corresponding to an opaque file.
	#
	# The path is used as is and is not open nor read.
	init opaque_file(path: String)
	do
		var source = new SourceFile.from_string(path, "")
		init(source, 0, 0, 0, 0)
	end
src/location.nit:157,2--164,4