UNPKG

awv3

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