* Resolves the value of all variable components. Only performs any work if * variable components exist. As an optimization, this node is returned * for a non-variable nodes (`isConst() == true`). Otherwise, `calc()` method * is used to calculate the new value. * @param {!CssContext} cont
(context, normalize)
| 130 | * @final |
| 131 | */ |
| 132 | resolve(context, normalize) { |
| 133 | if (this.isConst(normalize)) { |
| 134 | return this; |
| 135 | } |
| 136 | return this.calc(context, normalize); |
| 137 | } |
| 138 | |
| 139 | /** |
| 140 | * Whether the CSS node is a constant or includes variable components. |
no test coverage detected