UNPKG

abstract-syntax-tree

Version:
10 lines (8 loc) 144 B
class Node { constructor (options) { this.type = 'Node' this.loc = null Object.assign(this, options) } } module.exports = Node