summaryrefslogtreecommitdiffstats
path: root/theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandler.java')
-rw-r--r--theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandler.java11
1 files changed, 8 insertions, 3 deletions
diff --git a/theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandler.java b/theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandler.java
index c489a6a4a7..8696cf7ccf 100644
--- a/theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandler.java
+++ b/theme-compiler/src/com/vaadin/sass/handler/SCSSDocumentHandler.java
@@ -26,7 +26,6 @@ import org.w3c.css.sac.SelectorList;
import com.vaadin.sass.ScssStylesheet;
import com.vaadin.sass.tree.ForNode;
-import com.vaadin.sass.tree.IfNode;
import com.vaadin.sass.tree.MixinDefNode;
import com.vaadin.sass.tree.VariableNode;
import com.vaadin.sass.tree.WhileNode;
@@ -50,8 +49,6 @@ public interface SCSSDocumentHandler extends DocumentHandler {
WhileNode whileDirective(String condition, String body);
- IfNode ifDirective();
-
void extendDirective(SelectorList list);
void startNestedProperties(String name);
@@ -69,4 +66,12 @@ public interface SCSSDocumentHandler extends DocumentHandler {
void endEachDirective();
+ void startIfElseDirective();
+
+ void endIfElseDirective();
+
+ void ifDirective(String evaluator);
+
+ void elseDirective();
+
}