UNPKG

awv3

Version:
10 lines (7 loc) 160 B
import Expr from './expr'; export default class Str extends Expr { static _fields = ['s']; unparse() { return JSON.stringify(this.s); } }