UNPKG

abstract-syntax-tree

Version:
12 lines (9 loc) 226 B
const Statement = require('./Statement') class EmptyStatement extends Statement { constructor (options) { super() this.type = 'EmptyStatement' Object.assign(this, options) } } module.exports = EmptyStatement