Property definitions

nitc $ ADebugTypeExpr :: defaultinit
# A special expression to debug types
class ADebugTypeExpr
	super AExpr

	# The `debug` keyword
	var n_kwdebug: TKwdebug is writable, noinit

	# The `type` keyword
	var n_kwtype: TKwtype is writable, noinit

	# The expression to check
	var n_expr: AExpr is writable, noinit

	# The type to check
	var n_type: AType is writable, noinit
end
src/parser/parser_nodes.nit:2849,1--2864,3