UNPKG

color-math

Version:
14 lines (10 loc) 250 B
import Expr from './Expr' export default class ArrayLiteralExpr extends Expr { constructor(value, $loc) { super('arrayLiteral', $loc) this.value = value } _evaluateInternal(e) { return e.evalArrayLiteral(this) } }