UNPKG

awv3

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