UNPKG

color-math

Version:
11 lines (8 loc) 236 B
import Expr from './Expr' export default class OperationExpr extends Expr { constructor($type, operator, options, $loc) { super(`operation.${$type}`, $loc) this.operator = operator this.options = options } }