Can the last parameter be special like a vararg?

  • False for operators: the last one is in fact the only one.
  • False for assignments: it is the right part of the assignment.
  • True for ids and brackets.

Property definitions

nitc :: modelize_property $ AMethid :: accept_special_last_parameter
	# Can the last parameter be special like a vararg?
	#
	# * False for operators: the last one is in fact the only one.
	# * False for assignments: it is the right part of the assignment.
	# * True for ids and brackets.
	fun accept_special_last_parameter: Bool do return false
src/modelize/modelize_property.nit:1132,2--1137,56

nitc :: modelize_property $ AIdMethid :: accept_special_last_parameter
	redef fun accept_special_last_parameter do return true
src/modelize/modelize_property.nit:1154,2--55

nitc :: modelize_property $ ABraMethid :: accept_special_last_parameter
	redef fun accept_special_last_parameter do return true
src/modelize/modelize_property.nit:1160,2--55