class Async::Node

def children?

@returns [Boolean]
Whether this node has any children.
def children?
	@children && !@children.empty?
end