function inspect(node)
{
	var doc = '';

	for (el in node) {
		doc += el + ' = ' + node[el] + '\n';
	}

	return doc;
}

