UNPKG

awv3

Version:
10 lines (7 loc) 210 B
import Stmt from './stmt'; export default class VariableDef extends Stmt { static _fields = ['elts']; unparse() { return 'VAR ' + this.elts.map(elt => elt.unparse()).join(', ') + ';'; } }