Package com.google.template.soy.parseinfo.SoyFileInfo

Examples of com.google.template.soy.parseinfo.SoyFileInfo.CssTagsPrefixPresence


    }

    @Override protected void visitCssNode(CssNode node) {

      String cssName = node.getSelectorText();
      CssTagsPrefixPresence existingCssTagsPrefixPresence = cssNamesMap.get(cssName);
      CssTagsPrefixPresence additionalCssTagsPrefixPresence =
          (node.getComponentNameExpr() == null) ?
              CssTagsPrefixPresence.NEVER : CssTagsPrefixPresence.ALWAYS;

      if (existingCssTagsPrefixPresence == null) {
        cssNamesMap.put(cssName, additionalCssTagsPrefixPresence);
View Full Code Here

TOP

Related Classes of com.google.template.soy.parseinfo.SoyFileInfo.CssTagsPrefixPresence

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.