UNPKG

awv3

Version:
10 lines (7 loc) 194 B
import Expr from './expr'; export default class Attribute extends Expr { static _fields = ['value', 'attr']; unparse() { return this.value.unparse() + '.' + this.attr; } }