UNPKG

color-math

Version:
14 lines (10 loc) 259 B
import Expr from './Expr' export default class ColorHexLiteralExpr extends Expr { constructor(value, $loc) { super('colorHexLiteral', $loc) this.value = value } _evaluateInternal(e) { return e.evalColorHexLiteral(this) } }