A point of view on the direct children of the node

Property definitions

nitcc_runtime $ Node :: children
	# A point of view on the direct children of the node
	fun children: SequenceRead[nullable Node] is abstract
lib/nitcc_runtime/nitcc_runtime.nit:370,2--371,54

nitcc_runtime $ NToken :: children
	redef fun children do return once new Array[Node]
lib/nitcc_runtime/nitcc_runtime.nit:472,2--50

nitcc_runtime $ Nodes :: children
	redef var children: Array[T] = new Array[T]
lib/nitcc_runtime/nitcc_runtime.nit:556,2--44

nitcc_runtime $ NProd :: children
	redef var children: SequenceRead[nullable Node] = new NProdChildren(self)
lib/nitcc_runtime/nitcc_runtime.nit:562,2--74