Package com.github.sommeri.less4j.core

Examples of com.github.sommeri.less4j.core.NotACssException


    case SIGNED_EXPRESSION:
    case VARIABLE:
    case DETACHED_RULESET_REFERENCE:
    case INDIRECT_VARIABLE:
    case VARIABLE_DECLARATION:
      throw new NotACssException(node);

    default:
      throw new IllegalStateException("Unknown: " + node.getType() + " " + node.getSourceLine() + ":" + node.getSourceColumn());
    }
  }
View Full Code Here


      throw new IllegalStateException("Unknown: " + node.getType() + " " + node.getSourceLine() + ":" + node.getSourceColumn());
    }
  }

  public boolean appendDetachedRuleset(DetachedRuleset node) {
    throw new NotACssException(node);
  }
View Full Code Here

TOP

Related Classes of com.github.sommeri.less4j.core.NotACssException

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.