diff options
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/parser/LexicalUnitImpl.java')
-rw-r--r-- | theme-compiler/src/com/vaadin/sass/parser/LexicalUnitImpl.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/parser/LexicalUnitImpl.java b/theme-compiler/src/com/vaadin/sass/parser/LexicalUnitImpl.java index 661dac6125..0afb95b315 100644 --- a/theme-compiler/src/com/vaadin/sass/parser/LexicalUnitImpl.java +++ b/theme-compiler/src/com/vaadin/sass/parser/LexicalUnitImpl.java @@ -628,4 +628,8 @@ public class LexicalUnitImpl implements LexicalUnit, SCSSLexicalUnit, public void setFunctionName(String functionName) { fname = functionName; } + + public static LexicalUnitImpl createIdent(String s) { + return new LexicalUnitImpl(0, 0, null, SAC_IDENT, s); + } } |