UNPKG

awv3

Version:
10 lines (7 loc) 213 B
import Stmt from './stmt'; export default class Assign extends Stmt { static _fields = ['target', 'value']; unparse() { return this.target.unparse() + ' = ' + this.value.unparse() + ';'; } }