UNPKG

awv3

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