Property definitions

core $ ListNode :: defaultinit
# Linked nodes that constitute a linked list.
private class ListNode[E]
	super Ref[E]

	# The next node.
	var next: nullable ListNode[E] = null

	# The previous node.
	var prev: nullable ListNode[E] = null
end
lib/core/collection/list.nit:330,1--339,3