diff options
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/parser/Parser.jj')
-rw-r--r-- | theme-compiler/src/com/vaadin/sass/parser/Parser.jj | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/parser/Parser.jj b/theme-compiler/src/com/vaadin/sass/parser/Parser.jj index 92cb3e46c1..af53edb482 100644 --- a/theme-compiler/src/com/vaadin/sass/parser/Parser.jj +++ b/theme-compiler/src/com/vaadin/sass/parser/Parser.jj @@ -1576,12 +1576,18 @@ void includeDirective() : { <INCLUDE_SYM> (<S>)* - (name = property() + (name = property()|name = variableName(){ name = "$"+name;}|name = interpolation() |(name = functionName() args = argValuelist()) <RPARAN>)(";"(<S>)*)+ {documentHandler.includeDirective(name, args);} } +String interpolation() : +{ + Token n;
}
{ + n = < INTERPOLATION > + { + return n.image;
}
} void listModifyDirective() :
{ } |