summaryrefslogtreecommitdiffstats
path: root/theme-compiler/src/com
diff options
context:
space:
mode:
authorSebastian Nyholm <sebastian@vaadin.com>2012-11-15 17:12:42 +0200
committerSebastian Nyholm <sebastian@vaadin.com>2012-11-15 17:46:47 +0200
commitb35b82ec7ab8f8245170db95434a44f7a3b29cc0 (patch)
tree85de550da48cdf15705e6e8cd64179c0061f406f /theme-compiler/src/com
parente54ff59fbe6a5452b469a355176351cd710663d1 (diff)
downloadvaadin-framework-b35b82ec7ab8f8245170db95434a44f7a3b29cc0.tar.gz
vaadin-framework-b35b82ec7ab8f8245170db95434a44f7a3b29cc0.zip
(#10186) Using the lighten function breaks up any later references to the parameter value
Change-Id: Ibdf66332dff186bcb791bbe48cb3d3ebcc87ede9
Diffstat (limited to 'theme-compiler/src/com')
-rw-r--r--theme-compiler/src/com/vaadin/sass/tree/RuleNode.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/tree/RuleNode.java b/theme-compiler/src/com/vaadin/sass/tree/RuleNode.java
index 38c5b1cb4e..217f6423a7 100644
--- a/theme-compiler/src/com/vaadin/sass/tree/RuleNode.java
+++ b/theme-compiler/src/com/vaadin/sass/tree/RuleNode.java
@@ -98,7 +98,7 @@ public class RuleNode extends Node implements IVariableNode {
if (param.getValue().toString()
.contains(node.getName())) {
- LexicalUnitImpl expr = node.getExpr();
+ String value = node.getExpr().toString();
LexicalUnitImpl prev = param
.getPreviousLexicalUnit();
@@ -106,7 +106,9 @@ public class RuleNode extends Node implements IVariableNode {
.getNextLexicalUnit();
if (param.getLexicalUnitType() == LexicalUnitImpl.SCSS_VARIABLE) {
- param.replaceValue(expr);
+ param.setStringValue(value);
+ param.setLexicalUnitType(node.getExpr()
+ .getLexicalUnitType());
param.setPrevLexicalUnit(prev);
param.setNextLexicalUnit(next);
}