com.vaadin.sass.internal.visitor
Class NestedNodeHandler
java.lang.Object
com.vaadin.sass.internal.visitor.NestedNodeHandler
public class NestedNodeHandler
- extends Object
Handle nested properties nodes (e.g. "font: { family: serif; }" to
"font-family: serif;").
Sample SASS code (from www.sass-lang.com):
li {
font: {
family: serif;
weight: bold;
size: 1.2em;
}
}
Note that this does not apply to nested blocks, which are handled by
BlockNodeHandler.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NestedNodeHandler
public NestedNodeHandler()
traverse
public static void traverse(NestPropertiesNode node)
Copyright © 2013–2014 Vaadin. All rights reserved.