A node in the tree datastructure. mainly consists out of helper functions
module.exports = class TreeNode constructor: (@parent = null) -> @children = [] @properties = []