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:365,2--366,54

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

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

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