class NodeAttribute { constructor( name, type, node = null ) { this.isNodeAttribute = true; this.name = name; this.type = type; this.node = node; } } export default NodeAttribute;