Property definitions

nitc $ CmdParserError :: defaultinit
# An error produced by the CmdParser
class CmdParserError
	super CmdError

	# Error message
	var message: String

	# Column related to the error
	var column: nullable Int

	redef fun to_s do return message
end
src/doc/commands/commands_parser.nit:241,1--252,3